diff --git a/benchmark/llama70b/Dockerfile.baseline b/benchmark/llama70b/Dockerfile.baseline new file mode 100644 index 000000000..1552b9087 --- /dev/null +++ b/benchmark/llama70b/Dockerfile.baseline @@ -0,0 +1,62 @@ +# Baseline: the AMD production config. VLLM_ROCM_USE_AITER is left unset (vLLM +# default False), so broad aiter compute is off and the all-reduce is the +# QuickReduce-INT4 path (baked below via VLLM_ROCM_QUICK_REDUCE_QUANTIZATION). The +# exp image flips to the iris one-shot all-reduce; the A/B isolates that. Each repo +# is cloned at a fixed commit and installed; aiter's runtime kernels are prebuilt +# into the image. The container only runs the workload. +FROM rocm/vllm-dev:nightly_main_20260612 + +ENV MAX_JOBS=32 +ARG GPU_ARCHS="gfx950" # MI350 +ARG TRITON_COMMIT="6898a3288c28d50d1f4e1f91aa5867ca0d1f3c3b" +ARG VLLM_COMMIT="17ee5b1ac5dd61fa89bc4321ef54b0a790a45db3" +ARG AITER_COMMIT="706861590abd821e2390d5fa7fb875ae057dade8" +ARG IRIS_COMMIT="ff072037adf7a80532807fc25e0d090874c30075" + +RUN git clone https://github.com/vllm-project/vllm.git /src/vllm \ + && cd /src/vllm && git checkout ${VLLM_COMMIT} \ + && pip install -r requirements/rocm.txt \ + && pip install . --no-build-isolation + +RUN pip install "triton @ git+https://github.com/triton-lang/triton.git@${TRITON_COMMIT}" + +RUN git clone --recursive https://github.com/ROCm/aiter.git /src/aiter \ + && cd /src/aiter && git checkout ${AITER_COMMIT} \ + && git submodule update --init --recursive \ + && pip install -e . --no-build-isolation + +RUN git clone https://github.com/ROCm/iris.git /src/iris \ + && cd /src/iris && git checkout ${IRIS_COMMIT} \ + && pip install . --no-build-isolation + +RUN pip install pytest ray tblib hf_transfer hf_xet "lm_eval[api]" + +# Prebuild the aiter kernels the server loads so it never JIT-compiles at runtime. +# Imported via sys.path so aiter/__init__ (which needs a live GPU) isn't pulled in. +RUN printf '%s\n' \ +"import sys" \ +"sys.path.insert(0, '/src/aiter/aiter')" \ +"from jit import core" \ +"WANT=['module_aiter_core','module_quant','module_rmsnorm','module_rmsnorm_quant','module_custom_all_reduce']" \ +"by={m['md_name']:m for m in core.get_args_of_build('all')[0]}" \ +"miss=[w for w in WANT if w not in by]" \ +"assert not miss, 'aiter prebuild: modules not in build set: %s' % miss" \ +"for w in WANT:" \ +" x=by[w]" \ +" core.build_module(md_name=w, srcs=x['srcs'], flags_extra_cc=list(x['flags_extra_cc'])+['-DPREBUILD_KERNELS=2'], flags_extra_hip=list(x['flags_extra_hip'])+['-DPREBUILD_KERNELS=2'], blob_gen_cmd=x['blob_gen_cmd'], extra_include=x['extra_include'], extra_ldflags=None, verbose=False, is_python_module=True, is_standalone=False, torch_exclude=False, third_party=x['third_party'])" \ +" print('[prebuild] built', w, flush=True)" \ +> /tmp/prebuild_aiter.py \ + && GPU_ARCHS="${GPU_ARCHS}" python3 /tmp/prebuild_aiter.py + +# Server env, baked into the image (the scripts export nothing - the image IS the +# environment). Shared by both arms: the AMD production config (aiter MHA off, +# QuickReduce INT4 all-reduce) plus operational settings (NCCL logging, RPC/ready +# timeouts). baseline bakes NO per-arm behavior flag: VLLM_ROCM_USE_AITER stays +# unset (vLLM default False) = broad aiter off, QuickReduce all-reduce. +ENV VLLM_ROCM_USE_AITER_MHA=0 +ENV VLLM_ROCM_QUICK_REDUCE_QUANTIZATION=INT4 +ENV NCCL_DEBUG=INFO +ENV VLLM_RPC_TIMEOUT=1800000 +ENV VLLM_ENGINE_READY_TIMEOUT_S=3600 + +CMD ["/bin/bash"] diff --git a/benchmark/llama70b/Dockerfile.exp b/benchmark/llama70b/Dockerfile.exp new file mode 100644 index 000000000..9598344e6 --- /dev/null +++ b/benchmark/llama70b/Dockerfile.exp @@ -0,0 +1,65 @@ +# Experiment: vLLM with the iris all-reduce path (VLLM_ROCM_USE_AITER_COMMS=1). +# Each repo is cloned at a fixed commit and installed; aiter's runtime kernels are +# prebuilt into the image. The container only runs the workload. +FROM rocm/vllm-dev:nightly_main_20260612 + +ENV MAX_JOBS=32 +ARG GPU_ARCHS="gfx950" # MI350 +ARG TRITON_COMMIT="6898a3288c28d50d1f4e1f91aa5867ca0d1f3c3b" +ARG VLLM_COMMIT="4e61409d254f761994b7498b20c78c3b5ecff8ae" # micmelesse/vllm allreduce_only (make_communicator gets both cpu+device groups) +ARG AITER_COMMIT="51f6c3197f775bdf93272f94335a96f534334ed4" # ROCm/aiter micmelesse/allreduce_only (make_communicator(cpu_group, device_group, ...)) +ARG IRIS_COMMIT="04ad32409251c7a7b55a39c8bae4629154e89c2c" # ROCm/iris muhaawad/one-shot-vllm + +RUN git clone https://github.com/micmelesse/vllm.git /src/vllm \ + && cd /src/vllm && git checkout ${VLLM_COMMIT} \ + && pip install -r requirements/rocm.txt \ + && pip install . --no-build-isolation + +RUN pip install "triton @ git+https://github.com/triton-lang/triton.git@${TRITON_COMMIT}" + +RUN git clone --recursive https://github.com/ROCm/aiter.git /src/aiter \ + && cd /src/aiter && git checkout ${AITER_COMMIT} \ + && git submodule update --init --recursive \ + && pip install -e . --no-build-isolation + +RUN git clone https://github.com/ROCm/iris.git /src/iris \ + && cd /src/iris && git checkout ${IRIS_COMMIT} \ + && pip install . --no-build-isolation + +RUN pip install pytest ray tblib hf_transfer hf_xet "lm_eval[api]" + +# Prebuild the aiter kernels the server loads so it never JIT-compiles at runtime. +# Imported via sys.path so aiter/__init__ (which needs a live GPU) isn't pulled in. +RUN printf '%s\n' \ +"import sys" \ +"sys.path.insert(0, '/src/aiter/aiter')" \ +"from jit import core" \ +"WANT=['module_aiter_core','module_quant','module_rmsnorm','module_rmsnorm_quant','module_custom_all_reduce']" \ +"by={m['md_name']:m for m in core.get_args_of_build('all')[0]}" \ +"miss=[w for w in WANT if w not in by]" \ +"assert not miss, 'aiter prebuild: modules not in build set: %s' % miss" \ +"for w in WANT:" \ +" x=by[w]" \ +" core.build_module(md_name=w, srcs=x['srcs'], flags_extra_cc=list(x['flags_extra_cc'])+['-DPREBUILD_KERNELS=2'], flags_extra_hip=list(x['flags_extra_hip'])+['-DPREBUILD_KERNELS=2'], blob_gen_cmd=x['blob_gen_cmd'], extra_include=x['extra_include'], extra_ldflags=None, verbose=False, is_python_module=True, is_standalone=False, torch_exclude=False, third_party=x['third_party'])" \ +" print('[prebuild] built', w, flush=True)" \ +> /tmp/prebuild_aiter.py \ + && GPU_ARCHS="${GPU_ARCHS}" python3 /tmp/prebuild_aiter.py + +# Server env, baked into the image (the scripts export nothing - the image IS the +# environment). Shared block is IDENTICAL to Dockerfile.baseline: the AMD production +# config (aiter MHA off, QuickReduce INT4) plus operational settings. +ENV VLLM_ROCM_USE_AITER_MHA=0 +ENV VLLM_ROCM_QUICK_REDUCE_QUANTIZATION=INT4 +ENV NCCL_DEBUG=INFO +ENV VLLM_RPC_TIMEOUT=1800000 +ENV VLLM_ENGINE_READY_TIMEOUT_S=3600 + +# The per-arm behavior - the only env that differs from baseline. All three are +# required: vLLM gates the comms backend on is_comms_enabled() = USE_AITER and +# USE_AITER_COMMS, so without the master toggle iris silently falls back to +# QuickReduce; and make_communicator has no default, so the backend must be declared. +ENV VLLM_ROCM_USE_AITER=1 +ENV VLLM_ROCM_USE_AITER_COMMS=1 +ENV AITER_COMMS_BACKEND=iris + +CMD ["/bin/bash"] diff --git a/benchmark/llama70b/README.md b/benchmark/llama70b/README.md new file mode 100644 index 000000000..b9d64a22d --- /dev/null +++ b/benchmark/llama70b/README.md @@ -0,0 +1,69 @@ +# iris all-reduce reproducer + +Correctness and performance for the iris one-shot collectives on +Llama-3.3-70B-FP8 at TP=8. Two arms, each a baked image (vllm, aiter, iris pinned): + +- **baseline** (`Dockerfile.baseline`) - AMD production config: broad aiter off, + the all-reduce is QuickReduce INT4. +- **exp** (`Dockerfile.exp`) - the iris one-shot all-reduce (`AITER_COMMS_BACKEND=iris`). + +The A/B isolates the all-reduce path. All vLLM behavior env is baked into the images; +the scripts only run the workload against the server. + +## Requirements + +- 8x MI350 (gfx950) +- Docker with ROCm device access + +```sh +RUN="docker run --rm -it \ + --device /dev/kfd --device /dev/dri --group-add video \ + --cap-add SYS_PTRACE --security-opt seccomp=unconfined \ + --ipc host --network host --shm-size 16g \ + -v $(pwd):/repro -w /repro" +``` + +## Run + +Build each image once, then run the commands you need against it. The A/B is the +baseline image vs the exp image; compare their outputs. + +```sh +docker build -f Dockerfile.baseline -t iris-repro:baseline . +docker build -f Dockerfile.exp -t iris-repro:exp . + +$RUN iris-repro:baseline ./bench.sh # perf: serving metrics (TTFT/TPOT/E2EL/throughput) +$RUN iris-repro:exp ./bench.sh + +$RUN iris-repro:baseline ./profile.sh # traces + per-kernel tables (what data.csv needs) +$RUN iris-repro:exp ./profile.sh + +$RUN iris-repro:baseline ./eval.sh # gsm8k accuracy gate (correctness) +$RUN iris-repro:exp ./eval.sh + +$RUN iris-repro:exp ./test.sh # iris collective correctness (exp stack, no server) +``` + +The four commands share one server config (`_serve.sh`) so perf, traces, and the +correctness gate all describe the same server. Each writes RAW artifacts under +`output//`: `results/` (the workload result JSON), `profile/{summary,traces,ir}/` +(profiling run), and `arm.json` (the resolved operating point + installed code SHAs). + +Default operating point is `decode64` (8192 in / 1024 out, concurrency 64), warm +(`WARMUP=64`, warmup requests excluded from the metrics). Knobs: `WORKLOAD=confluence` +(the guide's 1024/1024/conc-4 example), `WARMUP=0` (cold), `DATA=real` (ShareGPT). + +## Analysis + +`data.csv` is the flat, long-format extract of every arm's raw artifacts (one row per +fact: e2e metrics, profiler-table per-kernel times, trace per-kernel times). `report.ipynb` +renders the A/B from it (pandas + matplotlib only). It ships pre-built, so you can open the +notebook directly. + +To rebuild it from arms you ran yourself, point `preprocess.py` at their output dirs (each +`output/-/` holds `arm.json` + `results/` + `profile/`): + +```sh +python preprocess.py output/* # parses each arm dir -> data.csv (reads arm.json for the labels) +jupyter nbconvert --to notebook --execute report.ipynb # or just open report.ipynb +``` diff --git a/benchmark/llama70b/_serve.sh b/benchmark/llama70b/_serve.sh new file mode 100755 index 000000000..b92026c9b --- /dev/null +++ b/benchmark/llama70b/_serve.sh @@ -0,0 +1,309 @@ +#!/bin/bash +# _serve.sh - shared vLLM server lifecycle for the llama70b reproducer. SOURCED by +# bench.sh (perf), profile.sh (traces), and eval.sh (gsm8k correctness); not a +# command (leading underscore), never run directly. +# +# Why this file exists: the perf run, the profiling run, and the correctness gate +# MUST run against an IDENTICAL server config, or they don't describe the same +# thing. So the server config + lifecycle live HERE, once - no caller can drift it. +# The callers differ only in what they send the live server (vllm bench serve +# --ignore-eos for perf/trace; lm_eval gsm8k with natural EOS for correctness), +# never in how the server is brought up. +# +# All vLLM behavior env (the arm flags AND the shared server config) is BAKED in the +# Dockerfiles, never exported here - the image IS the environment. The arm is +# whatever the image baked: Dockerfile.exp bakes the comms trio (USE_AITER + +# USE_AITER_COMMS + AITER_COMMS_BACKEND=iris); baseline bakes none (QuickReduce). + +MODEL="amd/Llama-3.3-70B-Instruct-FP8-KV" +TP="${TP:-8}" +HOST=localhost +PORT=8000 +PROFILE="${PROFILE:-}" # set (any non-empty value) => profiling run; bench.sh leaves it empty + +# Operating point - the regime being measured (input/output len, concurrency). +# Shared by bench.sh and profile.sh so a profiled run CANNOT drift from the perf +# run's operating point; only NUM_PROMPTS (the sample size) is meant to differ. +# eval.sh ignores these (it drives gsm8k, not the bench client). +WORKLOAD="${WORKLOAD:-decode64}" +DATA="${DATA:-random}" +case "$WORKLOAD" in + confluence) _input=1024; _output=1024; _conc=4; _prompts=32 ;; # the guide's light example + decode64) _input=8192; _output=1024; _conc=64; _prompts=128 ;; # long context, high concurrency + *) echo "ERROR: Unknown WORKLOAD '$WORKLOAD'. Expected: confluence, decode64" >&2; exit 1 ;; +esac +case "$DATA" in + random|real) ;; + *) echo "ERROR: Unknown DATA '$DATA'. Expected: random, real" >&2; exit 1 ;; +esac +SHAREGPT_JSON="${SHAREGPT_JSON:-$HOME/.cache/repro/ShareGPT_V3_unfiltered_cleaned_split.json}" +INPUT_LEN="${INPUT_LEN:-$_input}" +OUTPUT_LEN="${OUTPUT_LEN:-$_output}" +CONCURRENCY="${CONCURRENCY:-$_conc}" +NUM_PROMPTS="${NUM_PROMPTS:-$_prompts}" + +# WARMUP sends that many warmup requests that are EXCLUDED from the reported metrics, +# so one-time init (NCCL bring-up, first-call/cudagraph costs) is not folded into the +# measured window. The published numbers came from the warm config (WARMUP=64); set +# WARMUP=0 for the cold config the AMD guide's command measures. +WARMUP="${WARMUP:-64}" + +# V1 spawns worker/engine subprocesses retitled "VLLM::Worker_TP"/"VLLM::EngineCore" +# that DON'T match "vllm serve"; on a crash they orphan and spin in NCCL, pegging +# every GPU until killed. Reap both patterns on exit. || true: pkill returns +# non-zero when nothing matches, and a failing last command in an EXIT trap would +# mark the whole run failed even though the work succeeded. +trap 'pkill -f "vllm serve" 2>/dev/null || true; pkill -9 -f "VLLM::" 2>/dev/null || true' EXIT INT TERM + +# The arm is whatever the image baked - never a runtime choice. Dockerfile.exp bakes +# VLLM_ROCM_USE_AITER_COMMS=1 (the iris comms path); baseline bakes nothing. +ARM=$([[ "${VLLM_ROCM_USE_AITER_COMMS:-0}" == "1" ]] && echo exp || echo baseline) + +# The command is set by each caller before sourcing (bench.sh=bench, profile.sh=profile, +# eval.sh=eval). It keeps each command's output in its own dir (below), so a profiling run +# does not overwrite the bench run's result JSON, and preprocess.py can label rows by it. +COMMAND="${COMMAND:-bench}" + +# gpu-memory-utilization is part of the operating point. exp (iris) needs 0.90: the +# gluon path's 8GB symmetric heap OOMs at the guide's 0.94. baseline runs the guide's +# 0.94. At conc=64 this is not KV-bound (~15-19x KV headroom), so the value only sets +# unused KV and changes no measured number - the two differ only to give iris headroom. +GPU_MEM_UTIL="${GPU_MEM_UTIL:-$([[ "$ARM" == exp ]] && echo 0.90 || echo 0.94)}" + +# Fixed `vllm serve` server params (the AMD guide config) - hoisted to vars so the +# serve command below AND dump_arm's record share ONE source (no drift). +MAX_MODEL_LEN="${MAX_MODEL_LEN:-10240}" +MAX_NUM_SEQS="${MAX_NUM_SEQS:-1024}" +KV_CACHE_DTYPE="${KV_CACHE_DTYPE:-fp8}" +MAX_NUM_BATCHED_TOKENS="${MAX_NUM_BATCHED_TOKENS:-131072}" + +# Per-arm output layout, one dir per (container, command). The arm produces RAW +# artifacts only: results/ (the workload result JSON) and, for a profiling run, +# profile/{summary,traces,ir}/. tmp/ is the profiler's scratch dumping ground, promoted +# to the structured dirs at the end. preprocess.py reads output/*/ to build data.csv. +SCRIPT_DIR="${SCRIPT_DIR:-$(dirname "$(realpath "${BASH_SOURCE[0]}")")}" +ARM_DIR="$SCRIPT_DIR/output/${ARM}-${COMMAND}" +RESULTS_DIR="$ARM_DIR/results" +PROFILE_DIR="$ARM_DIR/profile" +PROFILE_SUMMARY_DIR="$PROFILE_DIR/summary" # per-rank key_averages tables (profiler_out_*.txt, ~20KB) +PROFILE_TRACES_DIR="$PROFILE_DIR/traces" # heavy chrome traces (*.pt.trace.json.gz) +PROFILE_IR_DIR="$PROFILE_DIR/ir" # compiled Triton IR (.ttgir/.llir/.amdgcn) +TMP_DIR="$ARM_DIR/tmp" + +# Record what actually ran inside this container: the resolved arm + operating point, +# the baked behavior env, and the installed code SHAs (lineage). Console for eyeball +# ( shown explicitly so a misconfigured image is caught by eye) + arm.json. +dump_arm() { + echo "[serve] resolved: arm=$ARM gpu_mem_util=$GPU_MEM_UTIL profile=${PROFILE:-(none)}" + echo "[serve] baked env (from the image; scripts export none of it):" + local v + for v in VLLM_ROCM_USE_AITER VLLM_ROCM_USE_AITER_COMMS AITER_COMMS_BACKEND \ + VLLM_ROCM_USE_AITER_MHA VLLM_ROCM_QUICK_REDUCE_QUANTIZATION \ + NCCL_DEBUG VLLM_RPC_TIMEOUT VLLM_ENGINE_READY_TIMEOUT_S; do + echo " $v=${!v:-}" + done + mkdir -p "$ARM_DIR" + ARM="$ARM" COMMAND="$COMMAND" MODEL="$MODEL" TP="$TP" \ + MAX_MODEL_LEN="$MAX_MODEL_LEN" MAX_NUM_SEQS="$MAX_NUM_SEQS" KV_CACHE_DTYPE="$KV_CACHE_DTYPE" \ + MAX_NUM_BATCHED_TOKENS="$MAX_NUM_BATCHED_TOKENS" GPU_MEM_UTIL="$GPU_MEM_UTIL" \ + DATA="$DATA" INPUT_LEN="$INPUT_LEN" OUTPUT_LEN="$OUTPUT_LEN" CONCURRENCY="$CONCURRENCY" \ + NUM_PROMPTS="$NUM_PROMPTS" WARMUP="$WARMUP" \ + python3 - "$ARM_DIR/arm.json" <<'PY' +import json, os, subprocess, sys +out = sys.argv[1] +e = os.environ.get +def sha(d): + try: + return subprocess.check_output(["git", "-C", d, "log", "--oneline", "-1"], text=True).strip() + except Exception as ex: + return f"(unavailable: {ex})" +serve_params = { + "model": e("MODEL"), + "max_model_len": int(e("MAX_MODEL_LEN")), + "tensor_parallel_size": int(e("TP")), + "max_num_seqs": int(e("MAX_NUM_SEQS")), + "kv_cache_dtype": e("KV_CACHE_DTYPE"), + "gpu_memory_utilization": float(e("GPU_MEM_UTIL")), + "max_num_batched_tokens": int(e("MAX_NUM_BATCHED_TOKENS")), + "enable_prefix_caching": False, # scripts always pass --no-enable-prefix-caching + "async_scheduling": True, # scripts always pass --async-scheduling +} +bench_params = { + "dataset": e("DATA"), + "input_len": int(e("INPUT_LEN")), + "output_len": int(e("OUTPUT_LEN")), + "concurrency": int(e("CONCURRENCY")), + "num_prompts": int(e("NUM_PROMPTS")), + "num_warmups": int(e("WARMUP")), + "ignore_eos": True, # bench/profile pass --ignore-eos +} +behavior = {k: os.environ[k] for k in ( + "VLLM_ROCM_USE_AITER", "VLLM_ROCM_USE_AITER_COMMS", "AITER_COMMS_BACKEND", + "VLLM_ROCM_USE_AITER_MHA", "VLLM_ROCM_QUICK_REDUCE_QUANTIZATION") if os.environ.get(k)} +repos = {n: sha(f"/src/{n}") for n in ("vllm", "aiter", "iris")} +json.dump({ + "arm": e("ARM"), + "container": e("ARM"), + "command": e("COMMAND"), + "serve_params": serve_params, + "bench_params": bench_params, + "behavior_env": behavior, + "repos": repos, +}, open(out, "w"), indent=2) +print(f"[serve] arm record -> {out}") +PY +} + +start_server() { + # Flags match the AMD guide's Llama 3.x FP8 section. Deviations: no + # --max-seq-len-to-capture / --swap-space (V0-engine flags the guide sets for + # vllm 0.10.1; this newer V1 build removed them - --swap-space killed the server + # at startup). gpu-memory-utilization is the per-arm knob (see GPU_MEM_UTIL above). + local serve_args=( + --host "$HOST" + --port "$PORT" + --max-model-len "$MAX_MODEL_LEN" + --tensor-parallel-size "$TP" + --max-num-seqs "$MAX_NUM_SEQS" + --kv-cache-dtype "$KV_CACHE_DTYPE" + --gpu-memory-utilization "$GPU_MEM_UTIL" + --max-num-batched-tokens "$MAX_NUM_BATCHED_TOKENS" + --no-enable-prefix-caching + --async-scheduling + ) + # Only wire up the torch profiler when profiling. vLLM dumps BOTH the heavy chrome + # trace AND the per-rank key_averages tables (profiler_out_*.txt) into + # torch_profiler_dir - no config to suppress the trace - so it targets the scratch + # TMP_DIR and profile.sh promotes the keepers (tables -> summary/, traces -> + # traces/) afterward. + if [[ -n "${PROFILE:-}" ]]; then + mkdir -p "$TMP_DIR" + serve_args+=(--profiler-config "{\"profiler\": \"torch\", \"torch_profiler_dir\": \"$TMP_DIR\", \"torch_profiler_dump_cuda_time_total\": true, \"torch_profiler_with_stack\": true}") + fi + + vllm serve "$MODEL" "${serve_args[@]}" & + SERVER_PID=$! + echo "[serve] server PID=$SERVER_PID" +} + +wait_ready() { + # Server has historically been ready in 3-8 min; 15 min means a hang - fail fast. + local max_wait=900 waited=0 http_code + while [[ $waited -lt $max_wait ]]; do + if ! kill -0 "$SERVER_PID" 2>/dev/null; then + echo "ERROR: server died during startup" + return 1 + fi + http_code=$(curl -s -o /dev/null -w "%{http_code}" \ + "http://${HOST}:${PORT}/v1/models" 2>/dev/null || echo 000) + if [[ "$http_code" == "200" ]]; then + echo "[serve] server ready in ${waited}s" + return 0 + fi + sleep 5 + waited=$((waited + 5)) + (( waited % 30 == 0 )) && echo " still waiting... (${waited}s, last=${http_code})" + done + echo "ERROR: server not ready within ${max_wait}s" + return 1 +} + +stop_server() { + # Proper shutdown (vLLM RFC #24885): SIGTERM the PARENT only; it stops accepting + # requests, drains in-flight, then reaps its TP worker children. Never signal the + # workers directly. Give the parent a BOUNDED grace period (an unbounded `wait` + # hangs forever if the engine is wedged); only if it doesn't exit escalate to KILL. + if [[ -n "${SERVER_PID:-}" ]]; then + kill -TERM "$SERVER_PID" 2>/dev/null || true + for _ in $(seq 1 30); do kill -0 "$SERVER_PID" 2>/dev/null || break; sleep 1; done + fi + if pgrep -f "vllm serve" >/dev/null 2>&1 || pgrep -f "VLLM::" >/dev/null 2>&1; then + pkill -TERM -f "vllm serve" 2>/dev/null || true + sleep 3 + pkill -9 -f "vllm serve" 2>/dev/null || true + pkill -9 -f "VLLM::" 2>/dev/null || true + fi + wait_vram_reclaim +} + +# KFD memory reclaim lags the server kill by tens of seconds for a 70B TP=8 server, +# so back-to-back runs can race the next server's startup allocation. Poll until every +# GPU is below 10 GiB used; bounded + loud. `found` guards the empty-probe case so no +# output does NOT read as "0 GiB used". +wait_vram_reclaim() { + local smi=/opt/rocm/bin/rocm-smi # not on PATH in the container + local deadline=$((SECONDS + 180)) max_used_gb="" + while (( SECONDS < deadline )); do + max_used_gb=$($smi --showmeminfo vram 2>/dev/null \ + | awk '/Used Memory/ {gsub(/[^0-9]/,"",$NF); gb=$NF/1024/1024/1024; if (gb>m) m=gb; found=1} END {if (found) printf "%.0f", m}') + if [[ -z "$max_used_gb" ]]; then + echo "[serve] WARNING: rocm-smi VRAM probe failed; sleeping 60s flat instead" + sleep 60 + return 0 + fi + (( max_used_gb < 10 )) && return 0 + sleep 5 + done + echo "[serve] WARNING: VRAM still ~${max_used_gb}GiB used on some GPU after 180s; starting server anyway" +} + +# Pre-fetch the model so the run is HF-offline. `hf download` (the unified CLI; +# `huggingface-cli` was removed). Dataset prefetch is caller-specific (sharegpt for +# bench/profile, gsm8k for eval) and happens in the caller BEFORE HF_HUB_OFFLINE. +prefetch_model() { + echo "" + echo "==========================================" + echo "[serve] pre-fetch model (arm=$ARM)" + echo "==========================================" + local attempt + for attempt in 1 2 3; do + if hf download "$MODEL" --exclude "original/*" --exclude "metal/*"; then + return 0 + fi + echo "[serve] HF download failed, retrying ($((attempt+1))/3)..." + sleep 10 + done +} + +# Fetch the ShareGPT dataset on demand (DATA=real only). No-op otherwise. +ensure_sharegpt() { + [[ "$DATA" == "real" && ! -f "$SHAREGPT_JSON" ]] || return 0 + echo "[serve] downloading ShareGPT dataset to $SHAREGPT_JSON" + mkdir -p "$(dirname "$SHAREGPT_JSON")" + curl -fL --retry 3 -o "$SHAREGPT_JSON" \ + "https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered/resolve/main/ShareGPT_V3_unfiltered_cleaned_split.json" \ + || { echo "ERROR: ShareGPT download failed (needed for DATA=real)"; exit 1; } +} + +# Drive the vllm bench-serve workload against the live server. $1=arm. --ignore-eos +# fixes output length (deterministic decode) - PERF/TRACE only, never correctness +# (that's eval.sh, gsm8k, natural EOS). A non-empty PROFILE adds --profile, dumping +# per-rank torch traces. The result JSON lands in results/. Shared by bench.sh +# (PROFILE empty) and profile.sh (PROFILE set) so both drive the IDENTICAL client. +run_workload() { + local arm="$1" + mkdir -p "$RESULTS_DIR" + local profile_args=() + [[ -n "${PROFILE:-}" ]] && profile_args+=(--profile) + local dataset_args=() + if [[ "$DATA" == "real" ]]; then + dataset_args+=(--dataset-name sharegpt --dataset-path "$SHAREGPT_JSON") + else + dataset_args+=(--dataset-name random --random-input-len "$INPUT_LEN" --random-output-len "$OUTPUT_LEN") + fi + vllm bench serve \ + --host "$HOST" --port "$PORT" --model "$MODEL" \ + "${dataset_args[@]}" \ + --max-concurrency "$CONCURRENCY" \ + --num-prompts "$NUM_PROMPTS" \ + --num-warmups "$WARMUP" \ + --percentile-metrics ttft,tpot,itl,e2el \ + --ignore-eos \ + --save-result --result-filename "$RESULTS_DIR/vllm_${arm}.json" \ + --label "$arm" \ + "${profile_args[@]}" || { + rc=$? + echo "ERROR: workload for $arm failed (exit $rc)" + return "$rc" + } +} diff --git a/benchmark/llama70b/bench.sh b/benchmark/llama70b/bench.sh new file mode 100755 index 000000000..6e454026b --- /dev/null +++ b/benchmark/llama70b/bench.sh @@ -0,0 +1,47 @@ +#!/bin/bash +# bench.sh - vLLM Llama-3.3-70B-FP8 TP=8 all-reduce PERF run (one baked arm). +# +# The headline-number run: `vllm bench serve --ignore-eos` at the operating point, +# no profiler hooks (tracing tax is asymmetric, so published/compared numbers come +# from unprofiled runs). Siblings, all sourcing _serve.sh so they hit the IDENTICAL +# server: profile.sh (same workload + profiler, dumps traces), eval.sh (gsm8k +# correctness gate), test.sh (collective correctness). +# +# The arm is whatever the image baked (Dockerfile.baseline | .exp). The A/B is two +# runs - build+run each image, then compare their result JSONs: +# docker build -f Dockerfile.baseline -t iris-repro:baseline . && $RUN iris-repro:baseline ./bench.sh +# docker build -f Dockerfile.exp -t iris-repro:exp . && $RUN iris-repro:exp ./bench.sh +# +# Usage: +# ./bench.sh # decode64 (8192/1024/conc-64), random data, warm +# WORKLOAD=confluence ./bench.sh # the guide's 1024/1024/conc-4 example +# WARMUP=0 ./bench.sh # cold config (no warmup exclusion) +# DATA=real ./bench.sh # ShareGPT requests vs synthetic +# INPUT_LEN=2048 CONCURRENCY=8 ./bench.sh # custom shape + +set -euo pipefail + +SCRIPT_DIR="$(dirname "$(realpath "${BASH_SOURCE[0]}")")" +COMMAND=bench # output lands under output/-bench/ +source "$SCRIPT_DIR/_serve.sh" # server + operating point + run_workload + output dirs + +dump_arm +prefetch_model +ensure_sharegpt +export HF_HUB_OFFLINE=1 TRANSFORMERS_OFFLINE=1 + +echo "" +echo "==========================================" +echo "[bench] arm=$ARM data=$DATA input=$INPUT_LEN output=$OUTPUT_LEN prompts=$NUM_PROMPTS concurrency=$CONCURRENCY warmup=$WARMUP (unprofiled)" +echo "==========================================" + +start_server +wait_ready +run_workload "$ARM" # PROFILE unset -> no --profile, no traces; result -> results/ +stop_server + +# A wrapper must report the real outcome: a missing result JSON means the workload +# didn't finish (the engine died mid-run). Fail loudly instead of a silent exit 0. +[ -f "$RESULTS_DIR/vllm_${ARM}.json" ] || { echo "[bench] FATAL: no result JSON ($RESULTS_DIR/vllm_${ARM}.json) - workload did not complete (check the log for EngineDeadError)." >&2; exit 1; } + +echo "[bench] done. result: $RESULTS_DIR/vllm_${ARM}.json" diff --git a/benchmark/llama70b/data.csv b/benchmark/llama70b/data.csv new file mode 100644 index 000000000..392b553c2 --- /dev/null +++ b/benchmark/llama70b/data.csv @@ -0,0 +1,47779 @@ +rank,pid,tid,cat,name,grain,statistic,unit,value,preprocessor,source_file,arm,container,command,pid2,tid2 +,,,,output_throughput,run,,tokens_per_s,2515.832749555655,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,total_throughput,run,,tokens_per_s,22642.494746000895,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,request_throughput,run,,requests_per_s,2.4568679194879444,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,ttft,run,mean,ms,7226.051776204258,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,ttft,run,median,ms,6133.839991874993,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,ttft,run,p99,ms,12204.910761322826,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,ttft,run,std,ms,3462.0775089710633,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,tpot,run,mean,ms,18.387774540994386,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,tpot,run,median,ms,19.4839987938428,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,tpot,run,p99,ms,24.803629581755498,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,tpot,run,std,ms,3.376947455031714,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,num_prompts,run,,requests,128,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,completed,run,,requests,128,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,duration,run,,s,52.09885276481509,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,output_tokens,run,,tokens,131072,parse_vllm,./data/decode64-baseline-bench-warm/results/vllm_baseline.json,decode64-baseline-bench-warm,baseline,bench,, +,,,,output_throughput,run,,tokens_per_s,2098.1988422324503,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,total_throughput,run,,tokens_per_s,18883.789580092052,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,request_throughput,run,,requests_per_s,2.049022306867627,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,ttft,run,mean,ms,7610.1726367051015,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,ttft,run,median,ms,6491.641102358699,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,ttft,run,p99,ms,12552.870678883046,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,ttft,run,std,ms,3473.488351542159,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,tpot,run,mean,ms,23.082071895567623,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,tpot,run,median,ms,24.314028738960552,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,tpot,run,p99,ms,29.858961645404527,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,tpot,run,std,ms,3.3883579017995733,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,num_prompts,run,,requests,128,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,completed,run,,requests,128,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,duration,run,,s,62.46881723590195,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,output_tokens,run,,tokens,131072,parse_vllm,./data/decode64-exp-bench-warm/results/vllm_iris.json,decode64-exp-bench-warm,exp,bench,, +,,,,output_throughput,run,,tokens_per_s,2417.760517166919,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,total_throughput,run,,tokens_per_s,21759.84465450227,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,request_throughput,run,,requests_per_s,2.361094255045819,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,ttft,run,mean,ms,7510.981309256749,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,ttft,run,median,ms,6132.556999102235,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,ttft,run,p99,ms,12452.856076955795,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,ttft,run,std,ms,3544.8335797963064,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,tpot,run,mean,ms,19.129477173458913,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,tpot,run,median,ms,20.478405295083714,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,tpot,run,p99,ms,25.867563715461326,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,tpot,run,std,ms,3.447147245777027,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,num_prompts,run,,requests,64,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,completed,run,,requests,64,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,duration,run,,s,27.10607586428523,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,output_tokens,run,,tokens,65536,parse_vllm,./data/decode64-baseline-profile-traces-warm/results/vllm_baseline.json,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_64(64),kernel,,calls,1003,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_64(64),kernel,mean,us,13978.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_64(64),kernel,,us,14020000.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,_C_custom_ar::qr_all_reduce,kernel,,calls,966,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,_C_custom_ar::qr_all_reduce,kernel,mean,us,4702.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,_C_custom_ar::qr_all_reduce,kernel,,us,4542000.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void quickreduce::allreduce_prototype_twoshot Device),kernel,,calls,10487,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,5.419,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Memcpy DtoD (Device -> Device),kernel,,us,56829.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::mm,kernel,,calls,1027,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::mm,kernel,mean,us,51.257,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::mm,kernel,,us,52641.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,calls,1022,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,mean,us,51.263,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,us,52391.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,hipStreamIsCapturing,kernel,,calls,12559,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,hipStreamIsCapturing,kernel,mean,us,4.082,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,hipStreamIsCapturing,kernel,,us,51270.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,hipEventSynchronize,kernel,,calls,1046,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,hipEventSynchronize,kernel,mean,us,48.834,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,hipEventSynchronize,kernel,,us,51081.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::argmax,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::argmax,kernel,mean,us,40.697,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::argmax,kernel,,us,42488.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,mean,us,40.697,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,us,42488.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,4800,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,8.1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,38882.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,423.319,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,33865.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,374.143,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,29931.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::div_,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::div_,kernel,mean,us,14.025,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::div_,kernel,,us,29284.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,mean,us,55.646,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,us,26710.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,157.258,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,25161.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,calls,2415,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,mean,us,8.684,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,us,20973.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::exponential_,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::exponential_,kernel,mean,us,16.475,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::exponential_,kernel,,us,17191.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::(anonymous namespace)::distribution...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::(anonymous namespace)::distribution...,kernel,mean,us,16.466,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::(anonymous namespace)::distribution...,kernel,,us,17191.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.788,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15202.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.274,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14902.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,13.777,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,14383.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_62(62),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,13882.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_62(62),kernel,,us,13882.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,82.34,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,13174.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,12867.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_47(47),kernel,,us,12867.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::index,kernel,,calls,2092,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::index,kernel,mean,us,8.996,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::index,kernel,,us,12242.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.849,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,12214.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::fill_,kernel,,calls,6300,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::fill_,kernel,mean,us,1.943,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::fill_,kernel,,us,12174.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_5,kernel,,calls,474,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_5,kernel,mean,us,25.176,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_5,kernel,,us,11934.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2068,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.65,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,11684.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::add,kernel,,calls,3132,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::add,kernel,mean,us,3.71,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::add,kernel,,us,11619.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,11549.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_31(31),kernel,,us,11549.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,_compute_slot_mapping_kernel,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.512,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,_compute_slot_mapping_kernel,kernel,,us,10974.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,10.241,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,10691.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_16(16),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_16(16),kernel,mean,us,10553.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,execute_context_0(0)_generation_16(16),kernel,,us,10553.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.575,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9996.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,_rocm_C::paged_attention,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,_rocm_C::paged_attention,kernel,mean,us,19.176,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,_rocm_C::paged_attention,kernel,,us,9205.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.381,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8749.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.371,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,Memcpy HtoD (Host -> Device),kernel,,us,8747.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,mean,us,8.008,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,us,8360.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_2,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_2,kernel,mean,us,6.727,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_2,kernel,,us,7023.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,6.208,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,6382.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,6,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,1054.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,6326.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_3,kernel,mean,us,5.589,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,triton_poi_fused_3,kernel,,us,5835.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.57,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5815.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.559,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5804.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1048,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,5.503,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5767.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.32,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4510.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::sub,kernel,,calls,1061,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::sub,kernel,mean,us,4.002,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,aten::sub,kernel,,us,4246.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +5,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,10487,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,4.824,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Memcpy DtoD (Device -> Device),kernel,,us,50592.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::argmax,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::argmax,kernel,mean,us,47.914,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::argmax,kernel,,us,42172.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,mean,us,40.395,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,us,42172.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,4800,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,7.772,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,37307.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,424.831,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,33987.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,hipGraphLaunch,kernel,,calls,1038,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,hipGraphLaunch,kernel,mean,us,35.4,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,hipGraphLaunch,kernel,,us,31538.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,calls,2415,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,mean,us,12.288,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,us,29676.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,368.909,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,29513.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::div_,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::div_,kernel,mean,us,13.938,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::div_,kernel,,us,29097.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,mean,us,55.813,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,us,26790.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,158.657,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,25385.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::exponential_,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::exponential_,kernel,mean,us,16.21,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::exponential_,kernel,,us,16923.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::(anonymous namespace)::distribution...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::(anonymous namespace)::distribution...,kernel,mean,us,16.21,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::(anonymous namespace)::distribution...,kernel,,us,16923.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.463,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15099.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.514,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14920.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,13.408,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,13997.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_62(62),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,13884.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_62(62),kernel,,us,13884.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,82.419,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,13187.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,12876.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_47(47),kernel,,us,12876.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_5,kernel,,calls,474,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_5,kernel,mean,us,24.944,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_5,kernel,,us,11823.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,11549.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_31(31),kernel,,us,11549.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::fill_,kernel,,calls,6300,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::fill_,kernel,mean,us,1.785,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::fill_,kernel,,us,11245.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.283,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,11030.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,_compute_slot_mapping_kernel,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.403,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,_compute_slot_mapping_kernel,kernel,,us,10860.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2068,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.22,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,10794.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::index,kernel,,calls,2092,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::index,kernel,mean,us,8.001,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::index,kernel,,us,10751.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_16(16),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_16(16),kernel,mean,us,10558.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,execute_context_0(0)_generation_16(16),kernel,,us,10558.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::add,kernel,,calls,3132,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::add,kernel,mean,us,3.368,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::add,kernel,,us,10550.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,9.938,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,10376.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.398,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9811.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,_rocm_C::paged_attention,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,_rocm_C::paged_attention,kernel,mean,us,18.458,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,_rocm_C::paged_attention,kernel,,us,8860.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.337,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,Memcpy HtoD (Host -> Device),kernel,,us,8712.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,7.933,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8282.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,mean,us,7.798,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,us,8141.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_2,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_2,kernel,mean,us,6.31,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_2,kernel,,us,6587.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,6,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,1060.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,6358.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,5.345,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,5494.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_3,kernel,mean,us,5.074,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,triton_poi_fused_3,kernel,,us,5298.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.055,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5277.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.05,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5272.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1048,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,4.928,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5164.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,3.725,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,3888.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::sub,kernel,,calls,1061,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::sub,kernel,mean,us,3.601,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,aten::sub,kernel,,us,3821.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +2,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,10487,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,5.454,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Memcpy DtoD (Device -> Device),kernel,,us,57192.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::mm,kernel,,calls,1027,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::mm,kernel,mean,us,50.376,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::mm,kernel,,us,51736.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,calls,1022,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,mean,us,50.377,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,us,51485.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,hipEventSynchronize,kernel,,calls,1046,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,hipEventSynchronize,kernel,mean,us,46.182,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,hipEventSynchronize,kernel,,us,48306.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::argmax,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::argmax,kernel,mean,us,40.674,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::argmax,kernel,,us,42464.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,mean,us,40.674,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,us,42464.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,4800,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,8.118,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,38966.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,417.352,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,33388.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::div_,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::div_,kernel,mean,us,14.314,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::div_,kernel,,us,29887.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,366.823,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,29346.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,mean,us,56.049,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,us,26904.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,157.178,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,25148.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,calls,2415,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,mean,us,9.007,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,us,21751.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::exponential_,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::exponential_,kernel,mean,us,16.025,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::exponential_,kernel,,us,16666.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::(anonymous namespace)::distribution...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::(anonymous namespace)::distribution...,kernel,mean,us,15.963,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::(anonymous namespace)::distribution...,kernel,,us,16666.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.776,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15190.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.532,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15172.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,14.095,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,14716.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_62(62),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,13886.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_62(62),kernel,,us,13886.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,81.905,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,13105.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,12861.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_47(47),kernel,,us,12861.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.87,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,12257.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::index,kernel,,calls,2092,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::index,kernel,mean,us,8.903,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::index,kernel,,us,12176.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::fill_,kernel,,calls,6300,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::fill_,kernel,mean,us,1.928,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::fill_,kernel,,us,12147.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_5,kernel,,calls,474,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_5,kernel,mean,us,24.891,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_5,kernel,,us,11798.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::add,kernel,,calls,3132,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::add,kernel,mean,us,3.725,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::add,kernel,,us,11668.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2068,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.638,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,11659.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,11550.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_31(31),kernel,,us,11550.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,_compute_slot_mapping_kernel,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.574,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,_compute_slot_mapping_kernel,kernel,,us,11039.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,10.291,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,10744.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_16(16),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_16(16),kernel,mean,us,10556.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,execute_context_0(0)_generation_16(16),kernel,,us,10556.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.302,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9711.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,_rocm_C::paged_attention,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,_rocm_C::paged_attention,kernel,mean,us,18.772,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,_rocm_C::paged_attention,kernel,,us,9010.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.375,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,Memcpy HtoD (Host -> Device),kernel,,us,8752.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.31,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8675.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,mean,us,7.905,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,us,8253.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_2,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_2,kernel,mean,us,6.57,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_2,kernel,,us,6859.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,6,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,1061.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,6368.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,6.095,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,6265.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_3,kernel,mean,us,5.631,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,triton_poi_fused_3,kernel,,us,5879.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.604,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5851.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.572,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5818.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1048,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,5.549,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5815.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.289,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4478.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::sub,kernel,,calls,1061,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::sub,kernel,mean,us,4.062,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,aten::sub,kernel,,us,4310.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +4,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,10487,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,5.412,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Memcpy DtoD (Device -> Device),kernel,,us,56754.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::mm,kernel,,calls,1027,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::mm,kernel,mean,us,50.819,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::mm,kernel,,us,52191.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,calls,1022,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,mean,us,50.812,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,us,51929.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::argmax,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::argmax,kernel,mean,us,40.638,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::argmax,kernel,,us,42421.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,mean,us,40.633,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,us,42421.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,4800,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,8.036,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,38575.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,424.874,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,33990.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,371.045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,29684.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::div_,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::div_,kernel,mean,us,14.175,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::div_,kernel,,us,29587.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,mean,us,55.368,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,us,26577.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,158.738,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,25398.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,calls,2415,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,mean,us,9.583,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,us,23144.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::exponential_,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::exponential_,kernel,mean,us,16.148,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::exponential_,kernel,,us,16858.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::(anonymous namespace)::distribution...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::(anonymous namespace)::distribution...,kernel,mean,us,16.148,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::(anonymous namespace)::distribution...,kernel,,us,16858.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.721,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15134.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.463,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15100.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,13.877,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,14487.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_62(62),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,13887.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_62(62),kernel,,us,13887.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,81.343,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,13015.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,12867.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_47(47),kernel,,us,12867.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::fill_,kernel,,calls,6300,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::fill_,kernel,mean,us,1.933,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::fill_,kernel,,us,12177.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.818,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,12147.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::index,kernel,,calls,2092,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::index,kernel,mean,us,12.63,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::index,kernel,,us,12114.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_5,kernel,,calls,474,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_5,kernel,mean,us,24.777,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_5,kernel,,us,11744.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2068,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.652,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,11688.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::add,kernel,,calls,3132,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::add,kernel,mean,us,3.711,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::add,kernel,,us,11623.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,11555.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_31(31),kernel,,us,11555.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,_compute_slot_mapping_kernel,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.532,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,_compute_slot_mapping_kernel,kernel,,us,10996.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,10.287,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,10740.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_16(16),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_16(16),kernel,mean,us,10551.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,execute_context_0(0)_generation_16(16),kernel,,us,10551.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.266,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9674.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,_rocm_C::paged_attention,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,_rocm_C::paged_attention,kernel,mean,us,18.603,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,_rocm_C::paged_attention,kernel,,us,8930.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.369,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,Memcpy HtoD (Host -> Device),kernel,,us,8745.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.253,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8616.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,mean,us,8.038,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,us,8392.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_2,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_2,kernel,mean,us,6.643,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_2,kernel,,us,6936.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,6,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,1059.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,6352.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,6.125,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,6296.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.57,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5815.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.563,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5808.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_3,kernel,mean,us,5.513,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,triton_poi_fused_3,kernel,,us,5756.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1048,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,5.461,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5723.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.363,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4555.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::sub,kernel,,calls,1061,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::sub,kernel,mean,us,4.005,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,aten::sub,kernel,,us,4249.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +6,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,10487,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,4.841,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Memcpy DtoD (Device -> Device),kernel,,us,50770.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,hipStreamIsCapturing,kernel,,calls,12559,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,hipStreamIsCapturing,kernel,mean,us,3.938,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,hipStreamIsCapturing,kernel,,us,49462.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,hipStreamWaitEvent,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,hipStreamWaitEvent,kernel,mean,us,44.785,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,hipStreamWaitEvent,kernel,,us,46755.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::argmax,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::argmax,kernel,mean,us,40.525,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::argmax,kernel,,us,42308.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,mean,us,40.525,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,us,42308.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,4800,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,7.684,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,36881.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,425.247,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,34020.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,calls,2415,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,mean,us,12.341,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,us,29803.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,370.278,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,29622.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::div_,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::div_,kernel,mean,us,14.082,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::div_,kernel,,us,29403.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,mean,us,55.912,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,us,26838.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,157.784,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,25245.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,hipGraphLaunch,kernel,,calls,1038,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,hipGraphLaunch,kernel,mean,us,20.438,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,hipGraphLaunch,kernel,,us,20682.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::exponential_,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::exponential_,kernel,mean,us,16.275,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::exponential_,kernel,,us,16991.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::(anonymous namespace)::distribution...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::(anonymous namespace)::distribution...,kernel,mean,us,16.275,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::(anonymous namespace)::distribution...,kernel,,us,16991.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.628,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15272.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.537,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14944.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,13.536,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,14132.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_62(62),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,13885.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_62(62),kernel,,us,13885.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,80.896,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12943.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,12866.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_47(47),kernel,,us,12866.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_5,kernel,,calls,474,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_5,kernel,mean,us,26.909,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_5,kernel,,us,11719.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,11553.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_31(31),kernel,,us,11553.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::fill_,kernel,,calls,6300,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::fill_,kernel,mean,us,1.793,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::fill_,kernel,,us,11299.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.231,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,10923.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2068,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.247,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,10850.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,_compute_slot_mapping_kernel,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.358,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,_compute_slot_mapping_kernel,kernel,,us,10814.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::index,kernel,,calls,2092,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::index,kernel,mean,us,7.946,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::index,kernel,,us,10762.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::add,kernel,,calls,3132,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::add,kernel,mean,us,3.392,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::add,kernel,,us,10624.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_16(16),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_16(16),kernel,mean,us,10556.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,execute_context_0(0)_generation_16(16),kernel,,us,10556.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,9.964,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,10403.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.447,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9863.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,_rocm_C::paged_attention,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,_rocm_C::paged_attention,kernel,mean,us,18.634,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,_rocm_C::paged_attention,kernel,,us,8944.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.341,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,Memcpy HtoD (Host -> Device),kernel,,us,8717.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,7.876,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8223.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,mean,us,7.711,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,us,8051.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_2,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_2,kernel,mean,us,6.407,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_2,kernel,,us,6689.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,6,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,1062.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,6374.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,5.303,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,5451.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.091,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5315.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.085,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5309.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_3,kernel,mean,us,5.085,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,triton_poi_fused_3,kernel,,us,5308.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1048,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,4.979,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5218.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4205.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::sub,kernel,,calls,1061,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::sub,kernel,mean,us,3.591,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,aten::sub,kernel,,us,3810.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +3,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,10487,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,5.447,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Memcpy DtoD (Device -> Device),kernel,,us,57128.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::mm,kernel,,calls,1027,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::mm,kernel,mean,us,51.206,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::mm,kernel,,us,52589.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,calls,1022,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,mean,us,51.196,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,us,52323.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::argmax,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::argmax,kernel,mean,us,40.62,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::argmax,kernel,,us,42407.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,mean,us,40.62,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,us,42407.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,4800,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,8.077,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,38771.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,415.886,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,33271.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::div_,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::div_,kernel,mean,us,14.282,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::div_,kernel,,us,29820.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,367.416,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,29393.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,mean,us,55.605,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,us,26691.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,hipStreamIsCapturing,kernel,,calls,12559,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,hipStreamIsCapturing,kernel,mean,us,2.083,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,hipStreamIsCapturing,kernel,,us,26162.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,156.981,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,25117.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,calls,2415,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,mean,us,8.7,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,us,21010.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::exponential_,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::exponential_,kernel,mean,us,15.946,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::exponential_,kernel,,us,16648.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::(anonymous namespace)::distribution...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::(anonymous namespace)::distribution...,kernel,mean,us,15.946,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::(anonymous namespace)::distribution...,kernel,,us,16648.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.771,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15185.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.4,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15033.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,14.164,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,14787.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_62(62),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,13885.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_62(62),kernel,,us,13885.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,81.067,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12971.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,12866.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_47(47),kernel,,us,12866.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::fill_,kernel,,calls,6300,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::fill_,kernel,mean,us,1.956,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::fill_,kernel,,us,12323.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.889,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,12295.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::index,kernel,,calls,2092,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::index,kernel,mean,us,8.993,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::index,kernel,,us,12250.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2068,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.721,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,11832.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_5,kernel,,calls,474,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_5,kernel,mean,us,24.943,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_5,kernel,,us,11823.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::add,kernel,,calls,3132,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::add,kernel,mean,us,3.737,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::add,kernel,,us,11697.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,11560.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_31(31),kernel,,us,11560.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,_compute_slot_mapping_kernel,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.478,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,_compute_slot_mapping_kernel,kernel,,us,10939.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,10.299,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,10752.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_16(16),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_16(16),kernel,mean,us,10545.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,execute_context_0(0)_generation_16(16),kernel,,us,10545.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.316,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9726.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,_rocm_C::paged_attention,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,_rocm_C::paged_attention,kernel,mean,us,18.942,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,_rocm_C::paged_attention,kernel,,us,9092.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.41,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8780.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.386,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,Memcpy HtoD (Host -> Device),kernel,,us,8764.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,mean,us,8.099,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,us,8456.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_2,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_2,kernel,mean,us,6.719,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_2,kernel,,us,7014.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,6.219,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,6393.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,6,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,1062.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,6369.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_3,kernel,mean,us,5.645,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,triton_poi_fused_3,kernel,,us,5893.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.605,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5852.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.599,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5845.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1048,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,5.498,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5762.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.292,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4481.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::sub,kernel,,calls,1061,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::sub,kernel,mean,us,3.999,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,aten::sub,kernel,,us,4243.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +7,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,10487,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,4.834,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Memcpy DtoD (Device -> Device),kernel,,us,50697.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::argmax,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::argmax,kernel,mean,us,40.427,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::argmax,kernel,,us,42200.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,mean,us,40.422,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,us,42200.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,4800,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,7.691,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,36915.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,417.95,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,33436.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,hipStreamIsCapturing,kernel,,calls,12559,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,hipStreamIsCapturing,kernel,mean,us,2.638,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,hipStreamIsCapturing,kernel,,us,33135.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,376.495,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,30120.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::div_,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::div_,kernel,mean,us,14.059,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::div_,kernel,,us,29356.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,calls,2415,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,mean,us,11.8,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,us,28497.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,mean,us,55.383,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,us,26584.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,156.463,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,25034.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::exponential_,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::exponential_,kernel,mean,us,16.16,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::exponential_,kernel,,us,16867.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::(anonymous namespace)::distribution...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::(anonymous namespace)::distribution...,kernel,mean,us,16.156,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::(anonymous namespace)::distribution...,kernel,,us,16867.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.679,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15324.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.644,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15054.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,13.44,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,14032.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_62(62),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,13886.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_62(62),kernel,,us,13886.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,82.283,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,13165.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,12870.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_47(47),kernel,,us,12870.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_5,kernel,,calls,474,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_5,kernel,mean,us,24.548,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_5,kernel,,us,11636.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,11555.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_31(31),kernel,,us,11555.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::fill_,kernel,,calls,6300,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::fill_,kernel,mean,us,1.769,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::fill_,kernel,,us,11142.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.314,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,11096.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,_compute_slot_mapping_kernel,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.36,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,_compute_slot_mapping_kernel,kernel,,us,10816.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::index,kernel,,calls,2092,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::index,kernel,mean,us,7.99,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::index,kernel,,us,10713.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2068,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.171,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,10694.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::add,kernel,,calls,3132,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::add,kernel,mean,us,3.373,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::add,kernel,,us,10563.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_16(16),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_16(16),kernel,mean,us,10554.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,execute_context_0(0)_generation_16(16),kernel,,us,10554.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,9.94,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,10377.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.256,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9664.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,_rocm_C::paged_attention,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,_rocm_C::paged_attention,kernel,mean,us,18.657,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,_rocm_C::paged_attention,kernel,,us,8955.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.366,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,Memcpy HtoD (Host -> Device),kernel,,us,8742.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8399.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,mean,us,7.646,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,us,7982.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_2,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_2,kernel,mean,us,6.145,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_2,kernel,,us,6416.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,6,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,1064.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,6387.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,5.336,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,5485.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_3,kernel,mean,us,5.082,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,triton_poi_fused_3,kernel,,us,5305.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.073,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5296.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5266.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1048,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,4.9,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5135.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.076,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4255.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::sub,kernel,,calls,1061,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::sub,kernel,mean,us,3.694,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,aten::sub,kernel,,us,3830.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +0,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,10487,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,5.214,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Memcpy DtoD (Device -> Device),kernel,,us,54683.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,hipStreamWaitEvent,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,hipStreamWaitEvent,kernel,mean,us,51.838,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,hipStreamWaitEvent,kernel,,us,54119.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::mm,kernel,,calls,1027,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::mm,kernel,mean,us,51.018,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::mm,kernel,,us,52396.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,calls,1022,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,mean,us,51.003,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,us,52125.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::argmax,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::argmax,kernel,mean,us,40.686,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::argmax,kernel,,us,42476.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,mean,us,40.686,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::reduce_kernel<512, 1, at::native::R...",kernel,,us,42476.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,4800,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,7.941,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,38115.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,hipGraphLaunch,kernel,,calls,1038,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,hipGraphLaunch,kernel,mean,us,34.79,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,hipGraphLaunch,kernel,,us,35879.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,429.466,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,34357.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,hipEventSynchronize,kernel,,calls,1046,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,hipEventSynchronize,kernel,mean,us,32.829,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,hipEventSynchronize,kernel,,us,34299.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,372.961,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,29837.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::div_,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::div_,kernel,mean,us,14.288,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::div_,kernel,,us,29834.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,mean,us,55.432,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_...,kernel,,us,26607.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,158.788,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,25406.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,calls,2415,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,mean,us,10.066,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void vllm::cross_device_reduce_1stage<__hip_bfloat16...,kernel,,us,24310.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::exponential_,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::exponential_,kernel,mean,us,16.141,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::exponential_,kernel,,us,16851.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::(anonymous namespace)::distribution...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::(anonymous namespace)::distribution...,kernel,mean,us,16.141,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::(anonymous namespace)::distribution...,kernel,,us,16851.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.984,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15404.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.654,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15299.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,13.922,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,14535.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_62(62),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,13882.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_62(62),kernel,,us,13882.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,160,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,83.542,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,13367.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,12868.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_47(47),kernel,,us,12868.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,2088,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.746,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,11998.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::fill_,kernel,,calls,6300,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::fill_,kernel,mean,us,1.889,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::fill_,kernel,,us,11902.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::index,kernel,,calls,2092,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::index,kernel,mean,us,8.812,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::index,kernel,,us,11879.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_5,kernel,,calls,474,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_5,kernel,mean,us,24.595,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_5,kernel,,us,11658.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,11552.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_31(31),kernel,,us,11552.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2068,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.524,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,11424.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::add,kernel,,calls,3132,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::add,kernel,mean,us,3.62,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::add,kernel,,us,11337.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,_compute_slot_mapping_kernel,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.449,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,_compute_slot_mapping_kernel,kernel,,us,10909.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_16(16),kernel,,calls,1,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_16(16),kernel,mean,us,10555.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,execute_context_0(0)_generation_16(16),kernel,,us,10555.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,10.031,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,10473.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.137,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9539.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1045,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.714,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,Memcpy HtoD (Host -> Device),kernel,,us,9106.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,_rocm_C::paged_attention,kernel,,calls,480,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,_rocm_C::paged_attention,kernel,mean,us,18.58,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,_rocm_C::paged_attention,kernel,,us,8918.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.377,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8746.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,mean,us,7.858,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_n...,kernel,,us,8204.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_2,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_2,kernel,mean,us,6.542,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_2,kernel,,us,6830.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,calls,6,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_red_fused_fused_add_rms_norm_3,kernel,mean,us,1063.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_red_fused_fused_add_rms_norm_3,kernel,,us,6376.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1028,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,6.103,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,6273.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_3,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_3,kernel,mean,us,5.465,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,triton_poi_fused_3,kernel,,us,5705.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.446,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5686.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.413,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5652.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1048,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,5.26,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5512.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1044,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.359,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4551.0,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::sub,kernel,,calls,1061,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::sub,kernel,mean,us,3.834,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,aten::sub,kernel,,us,4067.9999999999995,parse_profile,./data/decode64-baseline-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-baseline-profile-traces-warm,baseline,profile,, +1,,,,void at::native::unrolled_elementwise_kernel Device),track_slice,,us,51490.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,9443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8752.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,us,244.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,calls,15,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,us,39.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,53.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,54.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,54.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,us,640.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,37160.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1003,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,us,2511.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,us,32423.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,us,14543.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,us,18031.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,us,8146.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,1753.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,calls,1029,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,49.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,100.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,51485.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,101.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,805.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1571.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,29345.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,13104.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,25148.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,33388.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3170808.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1437,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1252.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,965411.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81589,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1157.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,765.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1255.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1092736.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81584,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1614900.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81575,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,605084.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81595,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2053.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1526.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,466.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,11039.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,_fwd_kernel,track_slice,,us,2879465.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,_fwd_kernel,track_slice,,calls,479,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,_topk_topp_kernel,track_slice,,us,235200.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,_topk_topp_kernel,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,us,90.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,us,69647.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_2,track_slice,,us,6858.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_3,track_slice,,us,5879.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_4,track_slice,,us,575316.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_4,track_slice,,calls,82471,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_5,track_slice,,us,495865.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_5,track_slice,,calls,82473,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,714973.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,521711.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,83516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8675.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,825440.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,83510,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,1153650.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,82466,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,8253.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,10744.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61383.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,us,16665.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,114.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4477.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,12257.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,15171.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,128.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15190.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,95.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5815.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1048,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,us,42463.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,us,284.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,4217.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,88.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,201.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,168.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,15.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,us,93.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,us,14715.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,us,92.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5817.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5850.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,11658.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2068,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9711.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,6265.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2492298.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,83489,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,510985.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,83515,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4576924.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,us,85.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,us,57.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,us,51.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,us,795.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,calls,112,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,us,56.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,us,47.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,175.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,us,105.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,91.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,88.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,21751.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,2415,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,3253059.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,164669,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,571342.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,83515,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,38966.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,4800,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,867.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,48.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,5701.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,## Call CompiledFxGraph f3ckeqdktq7tnn4n33nhq4odfl7pvscappeldlvio7b57yyshh72 ##,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,## Call CompiledFxGraph f3ckeqdktq7tnn4n33nhq4odfl7pvscappeldlvio7b57yyshh72 ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,## Call CompiledFxGraph f7m3ah37vyae3izjlpqbuxjwp3krrfdipa2o5hi6ifaro42j2m7h ##,track_slice,,us,26.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,## Call CompiledFxGraph f7m3ah37vyae3izjlpqbuxjwp3krrfdipa2o5hi6ifaro42j2m7h ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,## Call CompiledFxGraph fidnl6yk2pcsss42dszm2v7zcxwq7kyqgiog6qbhjbjeobzxiypt ##,track_slice,,us,450.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,## Call CompiledFxGraph fidnl6yk2pcsss42dszm2v7zcxwq7kyqgiog6qbhjbjeobzxiypt ##,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1996.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1430.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,_rocm_C::paged_attention,track_slice,,us,1467.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,_rocm_C::paged_attention,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,_rocm_C::wvSplitK,track_slice,,us,54.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_local_scalar_dense,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_local_scalar_dense,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_scaled_mm,track_slice,,us,158269.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_scaled_mm,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_softmax,track_slice,,us,4213.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_to_copy,track_slice,,us,6703.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_to_copy,track_slice,,calls,5228,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_unsafe_view,track_slice,,us,557.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::_unsafe_view,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::add,track_slice,,us,9560.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::add,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::alias,track_slice,,us,1109.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::alias,track_slice,,calls,2964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::argmax,track_slice,,us,6693.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::argmax,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::as_strided,track_slice,,us,15008.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::as_strided,track_slice,,calls,61255,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::clone,track_slice,,us,1320.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::clone,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::copy_,track_slice,,us,39356.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::copy_,track_slice,,calls,17780,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::cumsum,track_slice,,us,134.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::cumsum,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::detach,track_slice,,us,1639.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::detach,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::detach_,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::detach_,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::div_,track_slice,,us,7179.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::div_,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::empty,track_slice,,us,9576.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::empty,track_slice,,calls,6501,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::empty_like,track_slice,,us,1843.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::empty_like,track_slice,,calls,2474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::empty_strided,track_slice,,us,13945.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::empty_strided,track_slice,,calls,6674,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::exponential_,track_slice,,us,5316.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::exponential_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::fill_,track_slice,,us,8725.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::fill_,track_slice,,calls,6300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::flatten,track_slice,,us,1145.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::flatten,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::index,track_slice,,us,20110.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::index,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::index_select,track_slice,,us,1822.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::index_select,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::item,track_slice,,us,18.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::item,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::le,track_slice,,us,73.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::le,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::lift_fresh,track_slice,,us,368.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::lift_fresh,track_slice,,calls,3157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::linear,track_slice,,us,1779.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::lt,track_slice,,us,2426.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::lt,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::masked_fill_,track_slice,,us,66.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::masked_fill_,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::matmul,track_slice,,us,1110.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::mm,track_slice,,us,37841.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::movedim,track_slice,,us,1746.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::movedim,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::permute,track_slice,,us,1144.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::permute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::reshape,track_slice,,us,4784.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::reshape,track_slice,,calls,5241,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::resize_,track_slice,,us,1685.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::resize_,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::resolve_conj,track_slice,,us,233.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::resolve_conj,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::resolve_neg,track_slice,,us,162.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::resolve_neg,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::rsub,track_slice,,us,50.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::rsub,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::scatter_,track_slice,,us,157.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::scatter_,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::select,track_slice,,us,3136.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::select,track_slice,,calls,2980,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::slice,track_slice,,us,32851.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::slice,track_slice,,calls,49001,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::softmax,track_slice,,us,2187.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::sort,track_slice,,us,364.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::sort,track_slice,,calls,34,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::sub,track_slice,,us,6141.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::sub,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::t,track_slice,,us,3639.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::t,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::to,track_slice,,us,4274.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::to,track_slice,,calls,10936,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::transpose,track_slice,,us,2588.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::transpose,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::unsqueeze,track_slice,,us,2477.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::unsqueeze,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::view,track_slice,,us,6362.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::view,track_slice,,calls,11101,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::zero_,track_slice,,us,22.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,aten::zero_,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,c10d::_allgather_base_,track_slice,,us,8845.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,c10d::_allgather_base_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,record_param_comms,track_slice,,us,8471.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,record_param_comms,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_2,track_slice,,us,41.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_2,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_3,track_slice,,us,32.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_4,track_slice,,us,715.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_4,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_5,track_slice,,us,636.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_5,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,710.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,779.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,42.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,804.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,776.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,35.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::all_gather,track_slice,,us,2442.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::all_reduce,track_slice,,us,915.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,2280.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,4212.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::unified_attention_with_output,track_slice,,us,895.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,599.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipCtxGetCurrent,track_slice,,us,424.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,978.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,2924,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipDeviceSynchronize,track_slice,,us,40.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipEventDestroy,track_slice,,us,1565.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipEventDestroy,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipEventRecord,track_slice,,us,15930.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipEventRecord,track_slice,,calls,6274,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipEventSynchronize,track_slice,,us,1287.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipEventSynchronize,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipExtLaunchKernel,track_slice,,us,6112.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipExtLaunchKernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,14705.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipFuncGetAttribute,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipFuncGetAttribute,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3522.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,8874,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipGraphLaunch,track_slice,,us,694392.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipGraphLaunch,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipHostMalloc,track_slice,,us,232.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipLaunchKernel,track_slice,,us,79701.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipLaunchKernel,track_slice,,calls,20567,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipMalloc,track_slice,,us,220.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipMalloc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipMemcpyAsync,track_slice,,us,52383.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipMemcpyAsync,track_slice,,calls,11532,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,22690.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipModuleLoadDataEx,track_slice,,us,1346.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipModuleLoadDataEx,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipPointerGetAttribute,track_slice,,us,6389.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,28122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,us,403.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3730.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12559,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipStreamWaitEvent,track_slice,,us,6524.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/2m/c2mqcg5j5k7w24yknwjz4y24hiwtheamskslcurjtbldgjetd5b2.py(1174): call,track_slice,,us,39038.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/2m/c2mqcg5j5k7w24yknwjz4y24hiwtheamskslcurjtbldgjetd5b2.py(1174): call,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/du/cduvsujr7yi5yuwb32vmabwxlvrvcydpnbni2mrsy6yh5moyyflt.py(814): call,track_slice,,us,214.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/du/cduvsujr7yi5yuwb32vmabwxlvrvcydpnbni2mrsy6yh5moyyflt.py(814): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/pi/cpi2rgjizlhjebb4ka3yjhl444n2cxu4tyxdbmzum4ts4bi7yf3o.py(799): call,track_slice,,us,238.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/pi/cpi2rgjizlhjebb4ka3yjhl444n2cxu4tyxdbmzum4ts4bi7yf3o.py(799): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,594.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,151.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1178.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,583.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1521.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1030.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,163.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,241.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1295.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2881.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,164.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,70.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,242.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,8604.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,908.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1352.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2152,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1212.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,5048.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,255.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,32.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1022.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,115.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4748.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,23295,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1968.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4001.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,46960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1141.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,15069,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,42.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,126,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,85.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,6630.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,92799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,102.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,13285.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,14949.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,364397,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1775.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,35849.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,6906.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,65952,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,918.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3109,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,396023.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,8977129,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,14922.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,33848,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,8094.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,18827,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,77.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,16.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1524781.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,8972942,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,96,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,55.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1128.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3762.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3723.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1361.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,474.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,14.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,378323.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,8977130,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,378.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3237.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,217.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,162.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4101.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,9898,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1542.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3056.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1781.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,4098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,10854.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2017.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,25.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2057.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3742.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,31.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,7257.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,133508,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1578.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,136.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2958.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,66122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,756.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,251.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,217.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,9034.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,8375,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,5151.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,36.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4365.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,24276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,437.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,751.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,5136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,39.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,577,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2383.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,242.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1926,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,11325.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3528,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1193.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1446,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,640.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1548.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,14670.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,200583,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1688.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2089,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,5852.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,5220,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1850.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3832.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,24673.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,378492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,34.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2159.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,490.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,211.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,18829.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,66516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,742.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,7943,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1889.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3959,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,277.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1029.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,299.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,46.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1648.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1469.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1719.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1658.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,688.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2010,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,242.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,6591.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1264.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,50.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1392.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,38.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1927.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3229.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,11186.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2100,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4833.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4492.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,6180.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3149,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,847.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3975.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,43.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,48.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,655.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1657.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,3144,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1862.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,45.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,303.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,110.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,561,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,3488.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,16058,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2195.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,85.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,12719.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,5691,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,342.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1142.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1051.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2970.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,2988.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,875.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,12.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,529.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,5114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,4440.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,5844,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,1407.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,47.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,us,23.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(804): get,track_slice,,us,632.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(804): get,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(117): __instancecheck__,track_slice,,us,302.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(117): __instancecheck__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(260): __init__,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(260): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(309): __init__,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(309): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(319): decode,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(319): decode,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(16): exists,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(16): exists,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(39): isdir,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(39): isdir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(1390): _handle_fromlist,track_slice,,us,24.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(1390): _handle_fromlist,track_slice,,calls,49,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(645): parent,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(645): parent,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(200): makedirs,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(200): makedirs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(709): __getitem__,track_slice,,us,2089.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(709): __getitem__,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(791): encode,track_slice,,us,1066.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(791): encode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(795): decode,track_slice,,us,490.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(795): decode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(808): getenv,track_slice,,us,714.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(808): getenv,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(100): split,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(100): split,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(138): splitroot,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(138): splitroot,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(41): _get_sep,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(41): _get_sep,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(71): join,track_slice,,us,13.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(71): join,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(0): ,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(0): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(1): ,track_slice,,us,478.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(1): ,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(1): ,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(1): launcher,track_slice,,us,1136.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(1): launcher,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,14.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,14.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): __eq__,track_slice,,us,1019.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): __eq__,track_slice,,calls,3114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): __hash__,track_slice,,us,1974.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): __hash__,track_slice,,calls,4158,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): __init__,track_slice,,us,4672.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): __init__,track_slice,,calls,7403,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): __repr__,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): dynamic_func,track_slice,,us,22828.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(2): dynamic_func,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,13.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,12.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,33.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(404): execution_fn,track_slice,,us,7978.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(404): execution_fn,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,16.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,base64.py(166): _b32encode,track_slice,,us,21.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,base64.py(166): _b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,base64.py(249): b32encode,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,base64.py(249): b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,collections/__init__.py(355): namedtuple,track_slice,,us,115.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,collections/__init__.py(355): namedtuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,collections/__init__.py(429): ,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,collections/__init__.py(429): ,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(104): __init__,track_slice,,us,6470.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(104): __init__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(132): __enter__,track_slice,,us,3399.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(132): __enter__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(141): __exit__,track_slice,,us,2937.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(141): __exit__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(299): helper,track_slice,,us,4096.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(299): helper,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(772): __init__,track_slice,,us,571.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(772): __init__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(775): __enter__,track_slice,,us,653.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(775): __enter__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(778): __exit__,track_slice,,us,503.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,contextlib.py(778): __exit__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,copy.py(247): _reconstruct,track_slice,,us,1764.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,copy.py(247): _reconstruct,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,copy.py(61): copy,track_slice,,us,3702.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,copy.py(61): copy,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,copyreg.py(98): __newobj__,track_slice,,us,488.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,dataclasses.py(255): wrapper,track_slice,,us,15.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,dataclasses.py(255): wrapper,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(1128): __new__,track_slice,,us,18.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(1128): __new__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(1266): __hash__,track_slice,,us,1165.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(1266): __hash__,track_slice,,calls,10423,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(1291): value,track_slice,,us,366.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(1291): value,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(202): __get__,track_slice,,us,1641.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(202): __get__,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(720): __call__,track_slice,,us,28.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,enum.py(720): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,functools.py(982): __get__,track_slice,,us,1226.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,functools.py(982): __get__,track_slice,,calls,1108,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/__init__.py(183): dumps,track_slice,,us,16.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/__init__.py(183): dumps,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/__init__.py(274): load,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/__init__.py(274): load,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/__init__.py(299): loads,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/__init__.py(299): loads,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/decoder.py(333): decode,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/decoder.py(333): decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/decoder.py(344): raw_decode,track_slice,,us,15.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/encoder.py(105): __init__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/encoder.py(183): encode,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/encoder.py(183): encode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/encoder.py(205): iterencode,track_slice,,us,64.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,json/encoder.py(205): iterencode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,logging/__init__.py(1517): debug,track_slice,,us,653.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,270.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,17.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/process.py(108): run,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,805.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,26.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1480.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,nn.Module: Sampler_0,track_slice,,us,1446.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,nn.Module: Sampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1013.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,622.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,16.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,91.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,497.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,89.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,639.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,161.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,1022.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1836.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4176,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,105.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,3075.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1005): open,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1005): open,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1015): read_bytes,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1015): read_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1022): read_text,track_slice,,us,8.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1022): read_text,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1157): __init__,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1157): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1164): __new__,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(1164): __new__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(358): __init__,track_slice,,us,16.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(358): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(380): with_segments,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(380): with_segments,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(387): _parse_path,track_slice,,us,41.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(387): _parse_path,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(407): _load_parts,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(407): _load_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(437): __str__,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(437): __str__,track_slice,,calls,11,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(447): __fspath__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(447): __fspath__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(551): drive,track_slice,,us,8.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(551): drive,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(560): root,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(560): root,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(569): _tail,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(569): _tail,track_slice,,calls,25,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(583): name,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(583): name,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(591): suffix,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(591): suffix,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(711): joinpath,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(711): joinpath,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(719): __truediv__,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(719): __truediv__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(731): parent,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,pathlib.py(731): parent,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,queue.py(122): put,track_slice,,us,18.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,queue.py(213): _put,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(1012): run,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(299): __enter__,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(302): __exit__,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(314): _is_owned,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(394): notify,track_slice,,us,15.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_compile.py(42): inner,track_slice,,us,37.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_compile.py(42): inner,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,234.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,104.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,15.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,61.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,127.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,39.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,559.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,209.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,948.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,90.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4664.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,29.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,267.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,928.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,134.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1604.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,39.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,3288.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,2612.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,686.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,290.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,3858,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,11990.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,207.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,355.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,361.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,634.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,3093.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,575.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,15110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1079): __call__,track_slice,,us,719.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,1176.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,902.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1145): ,track_slice,,us,574.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1145): ,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1257): __call__,track_slice,,us,1860.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,6037,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(864): __call__,track_slice,,us,525.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_ops.py(864): __call__,track_slice,,calls,2886,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,us,16.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,591.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_tensor.py(40): wrapped,track_slice,,us,26.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_tensor.py(40): wrapped,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,731.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,1758.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,880.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(823): ,track_slice,,us,504.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(823): ,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,3098.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3294.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2550.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,8078.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1454.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,3456.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,156.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,36.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1264.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1463.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3612.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,243.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,596.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2208.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,12.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,3266.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,826.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,6266,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,1014.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,1686.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1161.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1381.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,47.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,1092.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,134.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,263.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1261.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1590.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,747.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,453.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,560.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,1147.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,4005.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,3619,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,938.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,553.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(199): record,track_slice,,us,534.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,300.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,3233.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,304.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1401.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,1154.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,us,1772.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,357.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,1060,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,20.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,13.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,us,398.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,23.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,20.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,42.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,12.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,us,6966.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,us,107.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,67.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,6180.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2911.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,6102,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,41.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,12.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,46.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/storage.py(74): size,track_slice,,us,1710.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/storage.py(74): size,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,649.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,51.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,180.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,19462.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,151.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/__init__.py(67): cdiv,track_slice,,us,79.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,264.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(15): ,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(15): ,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(26): is_iterable,track_slice,,us,31.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(26): is_iterable,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(42): find_paths_if,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(42): find_paths_if,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(46): _impl,track_slice,,us,27.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/_utils.py(46): _impl,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,us,83.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,us,15009.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,us,11860.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,us,27.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,us,16.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(319): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(319): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,us,6071.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,us,208.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,us,138.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/compiler.py(26): __init__,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/compiler.py(26): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,4284.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,calls,26,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(21): ,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(21): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(90): visit,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/driver.py(90): visit,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(226): compile,track_slice,,us,31.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(226): compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,286.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,us,46.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(411): ,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(411): ,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,us,323.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(485): run,track_slice,,us,163.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(485): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,us,3839.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(71): hash,track_slice,,us,20.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(71): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(73): ,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(73): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(107): get,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(107): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(117): get,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(117): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(130): get,track_slice,,us,1540.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(130): get,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(160): get,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(160): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(223): get,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(223): get,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(347): ,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(347): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,us,140.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(422): __call__,track_slice,,us,1787.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(422): __call__,track_slice,,calls,5104,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(75): __get__,track_slice,,us,5121.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/knobs.py(75): __get__,track_slice,,calls,15629,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,us,903.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,560.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/_allocation.py(46): get,track_slice,,us,721.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/_allocation.py(46): get,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,us,965.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(249): _base32,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(249): _base32,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(38): __init__,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(38): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(62): has_file,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(62): has_file,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(73): get_group,track_slice,,us,15.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/cache.py(73): get_group,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/driver.py(36): active,track_slice,,us,587.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,7659,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,us,1817.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,calls,1440,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,us,591.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(373): ,track_slice,,us,7863.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(373): ,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,us,12.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,us,4709.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,us,28.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(603): ,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(603): ,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,us,17.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,us,36.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(714): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(714): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(718): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(718): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(723): run,track_slice,,us,33329.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(723): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,us,19.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1174): __init__,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1215): __setattr__,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1269): __init__,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1273): ,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(166): _type_convert,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(175): _type_check,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(2187): cast,track_slice,,us,2053.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(2187): cast,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(2344): get_origin,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(2344): get_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(317): _deduplicate,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(392): inner,track_slice,,us,880.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(392): inner,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(494): __repr__,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(515): __getitem__,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(694): Union,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(730): ,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(747): Optional,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(892): __init__,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(962): __eq__,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(971): __hash__,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1415.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,us,51.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,us,101.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,us,715.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1724.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,461.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,19.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,353.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,614.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,126.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,282.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,439.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6805.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1530,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,87.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,52.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,19.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,782.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,800.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,855.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1050,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,22.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,1062.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2774.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,646.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,171.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,248.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,94.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,650.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,1194.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,us,9131.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,us,866.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,337.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1750.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,663.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,238.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,476.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2073039.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,8972947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1768.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,612.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2571.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,348.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,1008.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,308050.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,8972947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,281850.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,8972947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,7784832.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1363691.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,8975038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1368190.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,8977129,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5729.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9806.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,137.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,294.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2572,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,553.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,us,80.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,us,498.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,calls,5222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,902.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,221.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,338.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,504.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,490.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,us,272.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,us,2820.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,us,629.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,730880.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,8972942,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,177.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,333.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,148.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2496,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,111.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2141.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,243.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,187.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,4036.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,793.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/logger.py(136): warning_once,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/logger.py(136): warning_once,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1088.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1083.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,1020.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,472.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,280.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,1262.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,597.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,5865.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,733.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,13138.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1568.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,569.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2446.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,4038.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,32.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2921.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,117.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,51.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,67.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,762.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4622,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,us,354.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,99.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,52.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,81.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,us,13.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,173.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,620.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,51.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,70.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,899.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,865.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,156.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,536.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(579): ,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,14.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,21.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1281.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,96.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,15.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,145.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2825.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4769.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1277.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1240.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,5399.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2559.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,253.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,16232.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,214.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3558.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7633.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2991.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5880.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,8891.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,139.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,455.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,71.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,844.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,96.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,134.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,102.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,25.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,472.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,407.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,426.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,330.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,14.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,us,2785.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,us,2216.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,us,239.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,us,923.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,us,1227.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,us,1534.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,us,13124.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,937.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3384.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2711.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,80.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,6249.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,11701.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6270,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,172.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,22,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3201.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9398,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14773.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3770.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,17.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,58.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,22.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3310.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,488.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,843.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1607.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,25.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,17.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,550.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,459.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,165.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,36.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,111.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,229.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,130.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,745.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,23.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,48,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16095.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,55.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9546.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,23187.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,371.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,26.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,850.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6787.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65602,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2836.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,332.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1752.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,346.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,107.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,246720.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,112.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6350.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11135.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,177378.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,201.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,121768.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,25533.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2209.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6773.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,5217.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,315.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,597.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3975.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2437.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,154917.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,439.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,372.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1204.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,192.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3374.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,921.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5666.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,3130.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,67311.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2333.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,616.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,511.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,31674.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,163.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2869.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,735.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,8423.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,749.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,55.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,310.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,233.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,99.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,946.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7463051.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,user_annotation,nccl:_all_gather_base,track_slice,,us,80344.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,user_annotation,nccl:_all_gather_base,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,885,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,us,796.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,885,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,calls,3116,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,25572776.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(120): update,track_slice,,us,19.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(21): __enter__,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(27): __exit__,track_slice,,us,18.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(37): __init__,track_slice,,us,25.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,25.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(63): __iter__,track_slice,,us,43.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(95): copy,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(299): __enter__,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(302): __exit__,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(308): _release_save,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(311): _acquire_restore,track_slice,,us,71.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(314): _is_owned,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(323): wait,track_slice,,us,48.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(359): wait,track_slice,,us,1577801.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(601): is_set,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(637): wait,track_slice,,us,22.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(655): wait,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,22.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/_monitor.py(69): run,track_slice,,us,84.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(100): acquire,track_slice,,us,40.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(104): release,track_slice,,us,19.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(108): __enter__,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(759): get_lock,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,35.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,17.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,27149826.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,(117): __instancecheck__,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,contextlib.py(104): __init__,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,contextlib.py(132): __enter__,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,contextlib.py(141): __exit__,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,contextlib.py(299): helper,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,queue.py(154): get,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,queue.py(171): get,track_slice,,us,22.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,queue.py(209): _qsize,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,queue.py(217): _get,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(1012): run,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(299): __enter__,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(302): __exit__,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(308): _release_save,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(311): _acquire_restore,track_slice,,us,44.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(314): _is_owned,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(323): wait,track_slice,,us,14.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(355): wait,track_slice,,us,681.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(394): notify,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,12.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,56.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,17.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,273.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,25003527.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(120): update,track_slice,,us,16.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(21): __enter__,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(27): __exit__,track_slice,,us,15.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(37): __init__,track_slice,,us,29.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,19.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(63): __iter__,track_slice,,us,41.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(95): copy,track_slice,,us,12.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(1032): _bootstrap,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(299): __enter__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(302): __exit__,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(308): _release_save,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(311): _acquire_restore,track_slice,,us,59.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(314): _is_owned,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(323): wait,track_slice,,us,59.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(359): wait,track_slice,,us,2147182.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(601): is_set,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(637): wait,track_slice,,us,25.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(655): wait,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,20.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/_monitor.py(69): run,track_slice,,us,76.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(100): acquire,track_slice,,us,21.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(104): release,track_slice,,us,14.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(108): __enter__,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(759): get_lock,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,148743,148753,Trace,PyTorch Profiler (0),track_slice,,us,27151364.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,148743,148753,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,148743,148753,,PyTorch Profiler,track,,us,27151364.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,765,,thread 765 (VLLM::Worker_TP),track,,us,27151163.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1249,,thread 1249 (VLLM::Worker_TP),track,,us,27151240.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1201,,thread 1201 (VLLM::Worker_TP),track,,us,27151150.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,1164,,thread 1164 (VLLM::Worker_TP),track,,us,27151143.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,4,,stream 4 ,track,,us,27022234.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,6,9,,stream 9 ,track,,us,26833967.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +4,765,885,,,track,,us,27131800.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank4.1782866353383890083.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,45891.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,9443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8742.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,us,236.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,calls,15,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,us,40.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,51.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,52.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,70.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,us,580.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,35146.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1003,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,us,2499.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,us,28796.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,us,14488.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,us,18096.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,us,8073.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,6986.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,calls,1029,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,47.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,100.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,51646.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,98.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,774.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1572.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,30119.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,13165.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,25034.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,33436.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3222347.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1437,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1257.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,939205.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81590,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1161.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,778.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1269.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1083181.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81587,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1609285.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81582,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,599587.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81588,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2031.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1538.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,476.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10816.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,_fwd_kernel,track_slice,,us,2887440.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,_fwd_kernel,track_slice,,calls,479,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,_topk_topp_kernel,track_slice,,us,234918.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,_topk_topp_kernel,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,us,80.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,us,72087.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_2,track_slice,,us,6415.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_3,track_slice,,us,5305.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_4,track_slice,,us,523805.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_4,track_slice,,calls,82468,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_5,track_slice,,us,415188.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_5,track_slice,,calls,82473,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,648302.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,83516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,470422.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8398.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,754413.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,1125571.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,82473,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,7982.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,10376.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61243.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,us,16866.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,107.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4255.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,11096.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,15324.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,113.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15053.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,92.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5135.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1048,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,us,42200.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,us,299.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,3750.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,76.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,192.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,149.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,15.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,us,83.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,us,14031.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,us,79.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5296.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5266.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,10694.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2068,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9663.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,5485.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2495378.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,83492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,468675.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4509754.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,961,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,us,77.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,us,56.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,us,49.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,us,782.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,calls,112,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,us,54.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,us,38.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,169.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,us,100.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,81.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,81.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,28497.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,2415,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,3721925.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,164657,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,553221.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,83516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,36915.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,4800,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,837.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,49.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,4806.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,## Call CompiledFxGraph f2toq7g5ty2orie6ubhrcadyuzis3z4fweupubufhxgex4pgzams ##,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,## Call CompiledFxGraph f2toq7g5ty2orie6ubhrcadyuzis3z4fweupubufhxgex4pgzams ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,## Call CompiledFxGraph fikx42ot2ljjte7sz6dorlvxzkhjoso75amfsvemnmysegmcu4bg ##,track_slice,,us,446.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,## Call CompiledFxGraph fikx42ot2ljjte7sz6dorlvxzkhjoso75amfsvemnmysegmcu4bg ##,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,## Call CompiledFxGraph fnytenmhp5vf23bdr6lin3tevpwgqyfa7zaayng36mtfgv2jcrtn ##,track_slice,,us,20.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,## Call CompiledFxGraph fnytenmhp5vf23bdr6lin3tevpwgqyfa7zaayng36mtfgv2jcrtn ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1912.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1386.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,_rocm_C::paged_attention,track_slice,,us,1377.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,_rocm_C::paged_attention,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,_rocm_C::wvSplitK,track_slice,,us,49.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_local_scalar_dense,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_local_scalar_dense,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_scaled_mm,track_slice,,us,138006.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_scaled_mm,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_softmax,track_slice,,us,4031.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_to_copy,track_slice,,us,6619.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_to_copy,track_slice,,calls,5228,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_unsafe_view,track_slice,,us,523.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::_unsafe_view,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::add,track_slice,,us,9056.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::add,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::alias,track_slice,,us,1043.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::alias,track_slice,,calls,2964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::argmax,track_slice,,us,6447.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::argmax,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::as_strided,track_slice,,us,13593.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::as_strided,track_slice,,calls,61255,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::clone,track_slice,,us,1248.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::clone,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::copy_,track_slice,,us,37743.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::copy_,track_slice,,calls,17780,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::cumsum,track_slice,,us,126.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::cumsum,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::detach,track_slice,,us,1554.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::detach,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::detach_,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::detach_,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::div_,track_slice,,us,6886.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::div_,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::empty,track_slice,,us,9368.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::empty,track_slice,,calls,6501,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::empty_like,track_slice,,us,1891.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::empty_like,track_slice,,calls,2474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::empty_strided,track_slice,,us,14973.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::empty_strided,track_slice,,calls,6674,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::exponential_,track_slice,,us,5113.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::exponential_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::fill_,track_slice,,us,8344.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::fill_,track_slice,,calls,6300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::flatten,track_slice,,us,1082.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::flatten,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::index,track_slice,,us,19751.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::index,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::index_select,track_slice,,us,1747.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::index_select,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::item,track_slice,,us,13.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::item,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::le,track_slice,,us,72.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::le,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::lift_fresh,track_slice,,us,326.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::lift_fresh,track_slice,,calls,3157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::linear,track_slice,,us,1672.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::lt,track_slice,,us,2303.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::lt,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::masked_fill_,track_slice,,us,60.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::masked_fill_,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::matmul,track_slice,,us,1005.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::mm,track_slice,,us,36347.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::movedim,track_slice,,us,1561.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::movedim,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::permute,track_slice,,us,1056.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::permute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::reshape,track_slice,,us,4566.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::reshape,track_slice,,calls,5241,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::resize_,track_slice,,us,1794.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::resize_,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::resolve_conj,track_slice,,us,218.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::resolve_conj,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::resolve_neg,track_slice,,us,163.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::resolve_neg,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::rsub,track_slice,,us,47.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::rsub,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::scatter_,track_slice,,us,132.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::scatter_,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::select,track_slice,,us,3179.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::select,track_slice,,calls,2980,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::slice,track_slice,,us,32021.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::slice,track_slice,,calls,49001,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::softmax,track_slice,,us,2017.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::sort,track_slice,,us,322.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::sort,track_slice,,calls,34,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::sub,track_slice,,us,5991.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::sub,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::t,track_slice,,us,3442.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::t,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::to,track_slice,,us,4176.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::to,track_slice,,calls,10936,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::transpose,track_slice,,us,2559.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::transpose,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::unsqueeze,track_slice,,us,2284.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::unsqueeze,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::view,track_slice,,us,6020.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::view,track_slice,,calls,11101,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::zero_,track_slice,,us,23.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,aten::zero_,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,c10d::_allgather_base_,track_slice,,us,8291.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,c10d::_allgather_base_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,record_param_comms,track_slice,,us,7761.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,record_param_comms,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_2,track_slice,,us,37.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_2,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_3,track_slice,,us,31.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_4,track_slice,,us,746.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_4,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_5,track_slice,,us,631.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_5,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,721.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,761.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,40.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,804.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,764.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,36.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,12.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::all_gather,track_slice,,us,2308.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::all_reduce,track_slice,,us,909.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,2245.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,4091.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::unified_attention_with_output,track_slice,,us,827.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,568.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipCtxGetCurrent,track_slice,,us,393.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,997.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,2924,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipDeviceSynchronize,track_slice,,us,39.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipEventDestroy,track_slice,,us,848.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipEventDestroy,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipEventRecord,track_slice,,us,9596.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipEventRecord,track_slice,,calls,5230,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipEventSynchronize,track_slice,,us,1234.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipEventSynchronize,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipExtLaunchKernel,track_slice,,us,4954.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipExtLaunchKernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,13860.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipFuncGetAttribute,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipFuncGetAttribute,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3379.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,8874,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipGraphLaunch,track_slice,,us,441843.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipGraphLaunch,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipHostMalloc,track_slice,,us,288.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipHostMalloc,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipLaunchKernel,track_slice,,us,69486.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipLaunchKernel,track_slice,,calls,20567,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipMalloc,track_slice,,us,153.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipMalloc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipMemcpyAsync,track_slice,,us,47079.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipMemcpyAsync,track_slice,,calls,11532,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,20929.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipModuleLoadDataEx,track_slice,,us,943.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipModuleLoadDataEx,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipPointerGetAttribute,track_slice,,us,6449.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,28122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,us,411.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3956.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12559,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipStreamWaitEvent,track_slice,,us,6088.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ez/cez22hbssn3pxnbpuaivykr5cngnoq7deas7mtfsktymf6lrookl.py(1174): call,track_slice,,us,36753.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ez/cez22hbssn3pxnbpuaivykr5cngnoq7deas7mtfsktymf6lrookl.py(1174): call,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/j2/cj2rnnbyuvnqvrshg4fm6vqbs7seo3p7xt4v6vivrdj4a3u7knxj.py(783): call,track_slice,,us,231.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/j2/cj2rnnbyuvnqvrshg4fm6vqbs7seo3p7xt4v6vivrdj4a3u7knxj.py(783): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ld/cld24lnqwoarfejcl4qvyvlgwctbxfijlijiw62gl7guob5zokjq.py(814): call,track_slice,,us,215.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ld/cld24lnqwoarfejcl4qvyvlgwctbxfijlijiw62gl7guob5zokjq.py(814): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,818.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,159.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1132.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,541.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1458.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,974.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,170.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,242.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1329.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2904.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,173.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,67.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,215.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,8749.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,913.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1301.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2152,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1229.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,5030.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,300.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,43.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,981.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,99.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4258.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,23295,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1776.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3897.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,46960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1159.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,15069,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,25.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,126,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,89.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,6452.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,92799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,88.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,12788.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,14507.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,364397,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1735.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,43895.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,6694.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,65952,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,957.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3109,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,8.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,398806.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,9061863,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,14514.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,33848,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,8067.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,18827,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,65.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1728458.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,9057676,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,96,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,39.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3749.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1139.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3331.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,821.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1308.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,441.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,383010.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,9063954,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,388.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3092.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,209.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,167.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3996.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,9898,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1931.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2607.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1752.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,4098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,15027.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2039.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,675.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,24.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1941.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3572.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,20.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,269.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,7314.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,133508,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1411.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,141.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3050.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,66122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,703.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,255.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,237.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,8938.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,8375,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4891.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,33.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4388.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,24276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,451.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,741.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,5136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,35.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,577,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2285.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,226.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1926,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,11274.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3528,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1246.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1446,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,626.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1465.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,14659.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,200583,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1660.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2089,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,5684.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,5220,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1698.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3678.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,24358.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,378492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,24.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2075.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,509.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,210.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,18790.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,66516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,758.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,7943,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1829.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3959,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,352.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1009.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,306.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,35.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1560.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1321.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1663.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1602.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,640.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2010,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,232.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,6286.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1227.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,58.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1402.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,33.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2029.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3263.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,10770.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2100,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,17.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4742.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4292.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,5466.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3149,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,849.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4016.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,44.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,41.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,636.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1598.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,3144,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1768.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,38.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,305.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,122.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,561,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3437.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,16058,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,3186.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,72.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,12336.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,5691,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,315.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1127.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1040.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2836.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,2902.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,895.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,541.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,5114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,4421.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,5844,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,1192.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,44.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,us,21.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(804): get,track_slice,,us,603.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(804): get,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(117): __instancecheck__,track_slice,,us,379.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(117): __instancecheck__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(260): __init__,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(260): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(309): __init__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(309): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(319): decode,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(319): decode,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(16): exists,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(16): exists,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(39): isdir,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(39): isdir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(1390): _handle_fromlist,track_slice,,us,20.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(1390): _handle_fromlist,track_slice,,calls,49,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(645): parent,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(645): parent,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(200): makedirs,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(200): makedirs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(709): __getitem__,track_slice,,us,2080.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(709): __getitem__,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(791): encode,track_slice,,us,951.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(791): encode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(795): decode,track_slice,,us,452.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(795): decode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(808): getenv,track_slice,,us,859.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(808): getenv,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(100): split,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(100): split,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(138): splitroot,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(138): splitroot,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(41): _get_sep,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(41): _get_sep,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(71): join,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(71): join,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(0): ,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(0): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(1): ,track_slice,,us,455.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(1): ,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(1): ,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(1): launcher,track_slice,,us,1195.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(1): launcher,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,14.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,13.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): __eq__,track_slice,,us,1027.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): __eq__,track_slice,,calls,3114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): __hash__,track_slice,,us,1699.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): __hash__,track_slice,,calls,4158,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): __init__,track_slice,,us,4540.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): __init__,track_slice,,calls,7403,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): __repr__,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): dynamic_func,track_slice,,us,22623.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(2): dynamic_func,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,12.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,33.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(404): execution_fn,track_slice,,us,7817.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(404): execution_fn,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,17.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,base64.py(166): _b32encode,track_slice,,us,19.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,base64.py(166): _b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,base64.py(249): b32encode,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,base64.py(249): b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,collections/__init__.py(355): namedtuple,track_slice,,us,100.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,collections/__init__.py(355): namedtuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,collections/__init__.py(429): ,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,collections/__init__.py(429): ,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(104): __init__,track_slice,,us,6894.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(104): __init__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(132): __enter__,track_slice,,us,3464.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(132): __enter__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(141): __exit__,track_slice,,us,3057.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(141): __exit__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(299): helper,track_slice,,us,4878.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(299): helper,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(772): __init__,track_slice,,us,574.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(772): __init__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(775): __enter__,track_slice,,us,596.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(775): __enter__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(778): __exit__,track_slice,,us,481.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,contextlib.py(778): __exit__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,copy.py(247): _reconstruct,track_slice,,us,1727.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,copy.py(247): _reconstruct,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,copy.py(61): copy,track_slice,,us,3897.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,copy.py(61): copy,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,copyreg.py(98): __newobj__,track_slice,,us,472.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,dataclasses.py(255): wrapper,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,dataclasses.py(255): wrapper,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(1128): __new__,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(1128): __new__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(1266): __hash__,track_slice,,us,1115.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(1266): __hash__,track_slice,,calls,10423,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(1291): value,track_slice,,us,1337.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(1291): value,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(202): __get__,track_slice,,us,1649.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(202): __get__,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(720): __call__,track_slice,,us,24.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,enum.py(720): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,functools.py(982): __get__,track_slice,,us,1207.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,functools.py(982): __get__,track_slice,,calls,1108,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/__init__.py(183): dumps,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/__init__.py(183): dumps,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/__init__.py(274): load,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/__init__.py(274): load,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/__init__.py(299): loads,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/__init__.py(299): loads,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/decoder.py(333): decode,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/decoder.py(333): decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/decoder.py(344): raw_decode,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/encoder.py(105): __init__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/encoder.py(183): encode,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/encoder.py(183): encode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/encoder.py(205): iterencode,track_slice,,us,43.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,json/encoder.py(205): iterencode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,logging/__init__.py(1517): debug,track_slice,,us,743.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,274.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,846.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,21.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1497.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,nn.Module: Sampler_0,track_slice,,us,1471.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,nn.Module: Sampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1191.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,602.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,76.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,431.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,91.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,563.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,151.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,976.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1952.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4176,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,100.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2979.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1005): open,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1005): open,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1015): read_bytes,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1015): read_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1022): read_text,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1022): read_text,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1157): __init__,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1157): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1164): __new__,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(1164): __new__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(358): __init__,track_slice,,us,13.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(358): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(380): with_segments,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(380): with_segments,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(387): _parse_path,track_slice,,us,38.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(387): _parse_path,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(407): _load_parts,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(407): _load_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(437): __str__,track_slice,,us,12.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(437): __str__,track_slice,,calls,11,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(447): __fspath__,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(447): __fspath__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(551): drive,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(551): drive,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(560): root,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(560): root,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(569): _tail,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(569): _tail,track_slice,,calls,25,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(583): name,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(583): name,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(591): suffix,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(591): suffix,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(711): joinpath,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(711): joinpath,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(719): __truediv__,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(719): __truediv__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(731): parent,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,pathlib.py(731): parent,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,queue.py(122): put,track_slice,,us,5297.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,queue.py(122): put,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,queue.py(213): _put,track_slice,,us,616.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,queue.py(213): _put,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(1012): run,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(1012): run,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(1032): _bootstrap,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(299): __enter__,track_slice,,us,630.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(299): __enter__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(302): __exit__,track_slice,,us,940.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(302): __exit__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(314): _is_owned,track_slice,,us,553.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(314): _is_owned,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(394): notify,track_slice,,us,1075.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,threading.py(394): notify,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_compile.py(42): inner,track_slice,,us,31.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_compile.py(42): inner,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,229.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,81.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,15.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,73.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,126.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,26.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,543.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,196.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,972.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,93.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4619.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,32.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,265.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,910.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,132.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1630.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,44.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,3278.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,2716.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,749.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,310.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,3858,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,11899.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,193.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,331.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,386.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,648.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,3150.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,535.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,15110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1079): __call__,track_slice,,us,682.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,943.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,794.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1145): ,track_slice,,us,621.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1145): ,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1257): __call__,track_slice,,us,1865.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,6037,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(864): __call__,track_slice,,us,538.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_ops.py(864): __call__,track_slice,,calls,2886,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,589.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_tensor.py(40): wrapped,track_slice,,us,25.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_tensor.py(40): wrapped,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,656.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,1829.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,791.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(823): ,track_slice,,us,536.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(823): ,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,3088.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3122.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2547.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7450.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1417.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2765.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,159.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,14.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1129.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1448.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3179.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,211.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,615.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2091.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,3041.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,802.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,6266,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,960.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,1642.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1102.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1581.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,52.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,112.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,133.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,256.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1214.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1481.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,770.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,546.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,530.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,1111.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,4012.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,3619,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,847.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,501.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(199): record,track_slice,,us,491.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,292.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,2649.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,281.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1301.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,943.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,us,1535.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,436.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,1060,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,us,378.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,21.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,us,6404.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,us,101.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,55.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5932.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2693.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,6102,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,21.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,21.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/storage.py(74): size,track_slice,,us,1594.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/storage.py(74): size,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,604.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,54.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,169.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,18809.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,153.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/__init__.py(67): cdiv,track_slice,,us,79.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,272.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(15): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(15): ,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(26): is_iterable,track_slice,,us,28.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(26): is_iterable,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(42): find_paths_if,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(42): find_paths_if,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(46): _impl,track_slice,,us,25.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/_utils.py(46): _impl,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,us,7.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,us,70.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,us,14889.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,us,11538.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,us,24.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(319): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(319): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,us,6030.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,us,903.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,us,124.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/compiler.py(26): __init__,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/compiler.py(26): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,4192.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,calls,26,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(21): ,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(21): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(90): visit,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/driver.py(90): visit,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(226): compile,track_slice,,us,24.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(226): compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,270.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,us,41.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(411): ,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(411): ,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,us,308.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(485): run,track_slice,,us,148.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(485): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,us,3697.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(71): hash,track_slice,,us,17.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(71): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(73): ,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(73): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(107): get,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(107): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(117): get,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(117): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(130): get,track_slice,,us,1468.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(130): get,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(160): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(160): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(223): get,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(223): get,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(347): ,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(347): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(422): __call__,track_slice,,us,1807.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(422): __call__,track_slice,,calls,5104,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(75): __get__,track_slice,,us,4914.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/knobs.py(75): __get__,track_slice,,calls,15629,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,us,899.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,587.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/_allocation.py(46): get,track_slice,,us,111.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/_allocation.py(46): get,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,us,1077.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(249): _base32,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(249): _base32,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,us,7.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(38): __init__,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(38): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(62): has_file,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(62): has_file,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(73): get_group,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/cache.py(73): get_group,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/driver.py(36): active,track_slice,,us,498.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,7659,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,us,1759.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,calls,1440,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,us,539.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(373): ,track_slice,,us,7750.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(373): ,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,us,4716.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,us,28.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(603): ,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(603): ,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,us,30.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(714): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(714): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(718): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(718): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(723): run,track_slice,,us,33243.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(723): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,us,15.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1174): __init__,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1215): __setattr__,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1269): __init__,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1273): ,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(166): _type_convert,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(175): _type_check,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(2187): cast,track_slice,,us,2036.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(2187): cast,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(2344): get_origin,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(2344): get_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(317): _deduplicate,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(392): inner,track_slice,,us,783.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(392): inner,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(494): __repr__,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(515): __getitem__,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(694): Union,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(730): ,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(747): Optional,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(892): __init__,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(962): __eq__,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(971): __hash__,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1323.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,us,44.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,us,91.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,us,627.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1709.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,474.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,24.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,352.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,577.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,132.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,242.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,450.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6349.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1530,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,67.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,34.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,16.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,742.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,800.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,858.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1050,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,13.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,1176.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2536.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,663.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,143.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,262.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,97.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,535.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,1152.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,us,8530.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,us,849.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,331.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1716.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,635.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,249.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,461.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2085438.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,9057681,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2367.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,547.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2489.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,415.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,1085.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,311920.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,9057681,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,263879.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,9057681,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,7878021.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1404380.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,9059772,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1375920.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,9061863,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5560.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,10649.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,107.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,278.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2572,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,551.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,us,71.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,us,484.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,calls,5222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,1037.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,197.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,326.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,489.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,491.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,us,261.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,us,2555.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,us,505.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,724014.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,9057676,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,181.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,337.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,139.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2496,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,108.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2085.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,221.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,179.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,4161.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,693.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/logger.py(136): warning_once,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/logger.py(136): warning_once,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1053.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1091.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,1005.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,467.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,294.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,910.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,578.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,5672.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,623.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,13117.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1406.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,525.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2478.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,4004.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,35.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2150.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,76.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,58.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,73.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,741.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4622,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,us,505.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,102.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,53.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,84.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,159.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,572.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,55.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,777.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,955.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,139.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,474.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(579): ,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(592): ,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,13.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/usage/usage_lib.py(174): _report_usage_worker,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/usage/usage_lib.py(174): _report_usage_worker,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/usage/usage_lib.py(256): _report_continuous_usage,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/usage/usage_lib.py(256): _report_continuous_usage,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,18.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1249.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,99.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,147.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2602.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4893.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1253.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1326.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,5406.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2655.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,246.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,16127.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,219.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3411.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7411.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2618.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5845.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,978.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,5918.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,124.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,456.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,40.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,599.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,82.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,133.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,94.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,21.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,450.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,423.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,356.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,305.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,us,2529.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,us,2102.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,us,216.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,us,897.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,us,1340.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,us,1565.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,us,12294.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,1058.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3439.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2416.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,64.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,5771.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,11424.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6270,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,152.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,22,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3150.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9398,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14384.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3734.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,16.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,56.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,23.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3371.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,493.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,829.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1433.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,22.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,534.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,400.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,147.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,37.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,99.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,198.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,114.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,698.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,20.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,48,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16286.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,54.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9548.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,22767.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,356.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,19.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,8.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,773.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6688.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65602,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2833.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,274.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1626.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,297.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,105.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,246303.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,101.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6190.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11351.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,179407.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,197.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,120988.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,24721.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2150.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6780.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,5040.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,238.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,532.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3910.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2292.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,150887.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,586.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,374.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1118.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,183.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3382.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,904.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5604.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,3167.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,67338.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2218.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,452.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,520.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,30837.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,172.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2670.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,554.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7829.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,726.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,55.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,283.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,195.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,91.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,911.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7484495.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,user_annotation,nccl:_all_gather_base,track_slice,,us,35683.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,user_annotation,nccl:_all_gather_base,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,884,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,us,577.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,884,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,calls,3130,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,26267426.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,8.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(120): update,track_slice,,us,19.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(21): __enter__,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(27): __exit__,track_slice,,us,23.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(37): __init__,track_slice,,us,26.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,22.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(63): __iter__,track_slice,,us,47.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(95): copy,track_slice,,us,13.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(299): __enter__,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(302): __exit__,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(308): _release_save,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(311): _acquire_restore,track_slice,,us,56.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(314): _is_owned,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(323): wait,track_slice,,us,49.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(359): wait,track_slice,,us,883475.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(601): is_set,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(637): wait,track_slice,,us,21.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(655): wait,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,20.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/_monitor.py(69): run,track_slice,,us,72.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(100): acquire,track_slice,,us,30.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(104): release,track_slice,,us,16.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(108): __enter__,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(111): __exit__,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(759): get_lock,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,cuda_runtime,hipEventDestroy,track_slice,,us,966.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,cuda_runtime,hipEventDestroy,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,cuda_runtime,hipEventRecord,track_slice,,us,2336.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,cuda_runtime,hipEventRecord,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,cuda_runtime,hipEventSynchronize,track_slice,,us,26548002.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,cuda_runtime,hipEventSynchronize,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,559.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,21349.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,419.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,6273,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,1615.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,362.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,8370,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,432.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,3363.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,12546,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,443.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,320.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,350.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,278.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,273451.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,2115,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,179.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,59541.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,646.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,us,8165.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,(117): __instancecheck__,track_slice,,us,353.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,(117): __instancecheck__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,contextlib.py(104): __init__,track_slice,,us,3358.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,contextlib.py(104): __init__,track_slice,,calls,6273,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,contextlib.py(132): __enter__,track_slice,,us,1213.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,contextlib.py(132): __enter__,track_slice,,calls,6273,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,contextlib.py(141): __exit__,track_slice,,us,959.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,contextlib.py(141): __exit__,track_slice,,calls,6273,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,contextlib.py(299): helper,track_slice,,us,3294.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,contextlib.py(299): helper,track_slice,,calls,6273,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,143.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,416.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,queue.py(154): get,track_slice,,us,3656.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,queue.py(154): get,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,queue.py(171): get,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,queue.py(209): _qsize,track_slice,,us,299.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,queue.py(209): _qsize,track_slice,,calls,2097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,queue.py(217): _get,track_slice,,us,324.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,queue.py(217): _get,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(1012): run,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(299): __enter__,track_slice,,us,664.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(299): __enter__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(302): __exit__,track_slice,,us,622.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(302): __exit__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(308): _release_save,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(308): _release_save,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(311): _acquire_restore,track_slice,,us,20.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(311): _acquire_restore,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(314): _is_owned,track_slice,,us,336.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(314): _is_owned,track_slice,,calls,2097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(323): wait,track_slice,,us,36.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(323): wait,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(355): wait,track_slice,,us,333.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(394): notify,track_slice,,us,647.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,threading.py(394): notify,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,844.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1317.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,365.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2253.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,395.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,5076.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,1965.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,3850.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,2057.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,6273,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,9594.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,741.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,3856.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,96429.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/v1/worker/gpu_model_runner.py(282): get_output,track_slice,,us,47807.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,vllm/v1/worker/gpu_model_runner.py(282): get_output,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,35391.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,25436961.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(120): update,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(21): __enter__,track_slice,,us,7.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(27): __exit__,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(37): __init__,track_slice,,us,17.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(63): __iter__,track_slice,,us,30.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(95): copy,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(299): __enter__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(302): __exit__,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(308): _release_save,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(311): _acquire_restore,track_slice,,us,39.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(314): _is_owned,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(323): wait,track_slice,,us,33.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(359): wait,track_slice,,us,1714171.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(601): is_set,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(637): wait,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(655): wait,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,13.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/_monitor.py(69): run,track_slice,,us,49.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(100): acquire,track_slice,,us,16.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(104): release,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(108): __enter__,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(111): __exit__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(759): get_lock,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,148977,148987,Trace,PyTorch Profiler (0),track_slice,,us,27151532.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,148977,148987,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,148977,148987,,PyTorch Profiler,track,,us,27151532.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,731,,thread 731 (VLLM::Worker_TP),track,,us,27151435.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1242,,thread 1242 (VLLM::Worker_TP),track,,us,27151475.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1193,,thread 1193 (VLLM::Worker_TP),track,,us,27151428.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,1160,,thread 1160 (VLLM::Worker_TP),track,,us,27151424.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,4,,stream 4 ,track,,us,27022382.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,2,9,,stream 9 ,track,,us,26833990.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +0,731,884,,,track,,us,27125468.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank0.1782866361794106734.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,45898.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,9443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8712.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,us,248.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,calls,15,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,us,39.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,51.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,52.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,74.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,us,603.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,35226.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1003,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,us,2220.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,us,23241.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,us,11947.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,us,17980.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,us,2098.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,6976.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,calls,1029,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,46.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,100.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,51396.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,97.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,792.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1600.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,29512.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,13187.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,25385.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,33986.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3256618.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1439,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1264.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,942968.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81594,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1165.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,782.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1258.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1077951.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81592,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1576231.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81580,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,599189.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81593,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2022.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1516.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,422.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10860.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,_fwd_kernel,track_slice,,us,2904962.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,_fwd_kernel,track_slice,,calls,479,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,_topk_topp_kernel,track_slice,,us,234749.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,_topk_topp_kernel,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,us,75.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,us,72512.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_2,track_slice,,us,6587.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_3,track_slice,,us,5297.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_4,track_slice,,us,511587.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_4,track_slice,,calls,82472,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_5,track_slice,,us,417083.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_5,track_slice,,calls,82472,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,645963.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,83518,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,472256.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8282.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,756739.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,1133794.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,82467,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,8141.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,10375.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61021.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,us,16923.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,102.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,3888.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,11030.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,15099.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,118.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,14920.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,92.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5164.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1048,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,us,42172.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,us,293.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,3737.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,77.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,196.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,148.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,14.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,us,83.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,us,13997.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,us,83.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5272.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5277.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,10794.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2068,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9811.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,5494.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2491520.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,83490,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,468411.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,83518,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4472668.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,963,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,us,79.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,us,55.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,us,50.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,us,776.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,calls,112,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,us,53.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,us,40.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,170.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,us,97.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,76.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,81.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,29662.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,2414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,3757366.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,164666,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,555389.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,37307.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,4800,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,838.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,48.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,4693.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,## Call CompiledFxGraph f7mfop5daqcvt3nbewlkj6hqnnek6hfg3ubfmllmimkzdzo4xcfv ##,track_slice,,us,19.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,## Call CompiledFxGraph f7mfop5daqcvt3nbewlkj6hqnnek6hfg3ubfmllmimkzdzo4xcfv ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,## Call CompiledFxGraph fgfounefeusp6fmaerh72imaa3adwcarnxhqdvmdyyizgx77yszl ##,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,## Call CompiledFxGraph fgfounefeusp6fmaerh72imaa3adwcarnxhqdvmdyyizgx77yszl ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,## Call CompiledFxGraph ftjr5tidfijwlaicx4zgqxxfitazakrc6ez3mjtdpgh336ox2krv ##,track_slice,,us,423.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,## Call CompiledFxGraph ftjr5tidfijwlaicx4zgqxxfitazakrc6ez3mjtdpgh336ox2krv ##,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,2020.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1417.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,_rocm_C::paged_attention,track_slice,,us,1424.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,_rocm_C::paged_attention,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,_rocm_C::wvSplitK,track_slice,,us,50.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_local_scalar_dense,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_local_scalar_dense,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_scaled_mm,track_slice,,us,136886.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_scaled_mm,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_softmax,track_slice,,us,3918.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_to_copy,track_slice,,us,6427.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_to_copy,track_slice,,calls,5228,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_unsafe_view,track_slice,,us,525.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::_unsafe_view,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::add,track_slice,,us,9034.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::add,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::alias,track_slice,,us,1010.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::alias,track_slice,,calls,2964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::argmax,track_slice,,us,6465.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::argmax,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::as_strided,track_slice,,us,13854.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::as_strided,track_slice,,calls,61255,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::clone,track_slice,,us,1229.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::clone,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::copy_,track_slice,,us,38105.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::copy_,track_slice,,calls,17780,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::cumsum,track_slice,,us,124.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::cumsum,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::detach,track_slice,,us,1595.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::detach,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::detach_,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::detach_,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::div_,track_slice,,us,6925.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::div_,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::empty,track_slice,,us,8910.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::empty,track_slice,,calls,6501,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::empty_like,track_slice,,us,1871.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::empty_like,track_slice,,calls,2474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::empty_strided,track_slice,,us,12995.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::empty_strided,track_slice,,calls,6674,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::exponential_,track_slice,,us,5097.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::exponential_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::fill_,track_slice,,us,8368.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::fill_,track_slice,,calls,6300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::flatten,track_slice,,us,1156.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::flatten,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::index,track_slice,,us,18857.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::index,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::index_select,track_slice,,us,1653.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::index_select,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::item,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::item,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::le,track_slice,,us,67.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::le,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::lift_fresh,track_slice,,us,344.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::lift_fresh,track_slice,,calls,3157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::linear,track_slice,,us,1714.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::lt,track_slice,,us,2292.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::lt,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::masked_fill_,track_slice,,us,62.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::masked_fill_,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::matmul,track_slice,,us,995.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::mm,track_slice,,us,35608.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::movedim,track_slice,,us,1568.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::movedim,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::permute,track_slice,,us,1001.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::permute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::reshape,track_slice,,us,4608.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::reshape,track_slice,,calls,5241,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::resize_,track_slice,,us,1802.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::resize_,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::resolve_conj,track_slice,,us,211.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::resolve_conj,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::resolve_neg,track_slice,,us,156.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::resolve_neg,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::rsub,track_slice,,us,48.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::rsub,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::scatter_,track_slice,,us,141.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::scatter_,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::select,track_slice,,us,3227.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::select,track_slice,,calls,2980,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::slice,track_slice,,us,32312.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::slice,track_slice,,calls,49001,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::softmax,track_slice,,us,2061.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::sort,track_slice,,us,336.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::sort,track_slice,,calls,34,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::sub,track_slice,,us,5750.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::sub,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::t,track_slice,,us,3430.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::t,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::to,track_slice,,us,4194.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::to,track_slice,,calls,10936,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::transpose,track_slice,,us,2557.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::transpose,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::unsqueeze,track_slice,,us,2351.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::unsqueeze,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::view,track_slice,,us,5887.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::view,track_slice,,calls,11101,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::zero_,track_slice,,us,21.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,aten::zero_,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,c10d::_allgather_base_,track_slice,,us,8399.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,c10d::_allgather_base_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,record_param_comms,track_slice,,us,7760.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,record_param_comms,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_2,track_slice,,us,37.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_2,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_3,track_slice,,us,29.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_4,track_slice,,us,682.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_4,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_5,track_slice,,us,600.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_5,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,675.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,733.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,39.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,742.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,693.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,31.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::all_gather,track_slice,,us,2292.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::all_reduce,track_slice,,us,960.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,2301.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,4056.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::unified_attention_with_output,track_slice,,us,856.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,591.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipCtxGetCurrent,track_slice,,us,415.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,1015.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,2924,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipDeviceSynchronize,track_slice,,us,35.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipEventDestroy,track_slice,,us,1311.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipEventDestroy,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipEventRecord,track_slice,,us,12099.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipEventRecord,track_slice,,calls,6274,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipEventSynchronize,track_slice,,us,1112.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipEventSynchronize,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipExtLaunchKernel,track_slice,,us,4868.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipExtLaunchKernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,13846.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipFuncGetAttribute,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipFuncGetAttribute,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3312.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,8874,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipGraphLaunch,track_slice,,us,423810.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipGraphLaunch,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipHostMalloc,track_slice,,us,200.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipLaunchKernel,track_slice,,us,72290.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipLaunchKernel,track_slice,,calls,20567,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipMalloc,track_slice,,us,186.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipMalloc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipMemcpyAsync,track_slice,,us,47714.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipMemcpyAsync,track_slice,,calls,11532,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,21451.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipModuleLoadDataEx,track_slice,,us,933.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipModuleLoadDataEx,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipPointerGetAttribute,track_slice,,us,6335.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,28122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,us,395.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3878.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12559,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipStreamWaitEvent,track_slice,,us,5311.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/nd/cnd6sdf4hor25pfw2dbjvk5j7jacfnlrlfroumpnyr33iker7pro.py(1174): call,track_slice,,us,35128.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/nd/cnd6sdf4hor25pfw2dbjvk5j7jacfnlrlfroumpnyr33iker7pro.py(1174): call,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/sg/csgbo3b4r54xuxcqkfweymxs5qadcttqwktjfvqy6ehpkoyo2ep7.py(814): call,track_slice,,us,204.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/sg/csgbo3b4r54xuxcqkfweymxs5qadcttqwktjfvqy6ehpkoyo2ep7.py(814): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/wq/cwqvxxhcmh7bgecn75rxvqhzkljzneseeeolutmau2v3oce67xrp.py(799): call,track_slice,,us,211.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/wq/cwqvxxhcmh7bgecn75rxvqhzkljzneseeeolutmau2v3oce67xrp.py(799): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,508.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,156.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1167.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,590.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1450.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1068.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,160.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,254.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1270.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2981.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,168.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,69.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,243.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,8793.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,938.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1333.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2152,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1200.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4997.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,292.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,42.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,973.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,114.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3797.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,23295,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1807.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3744.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,46960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1163.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,15069,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,30.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,126,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,83.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,6167.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,92799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,93.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,13254.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,15069.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,364397,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1691.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,32026.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,6769.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,65952,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,869.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3109,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,408366.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,9158947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,14257.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,33848,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,7877.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,18827,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,63.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1560713.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,9154760,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,96,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,38.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1140.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3811.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3384.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1275.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,445.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,383382.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,9158948,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,361.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3121.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,192.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,136.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3844.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,9898,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1538.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2579.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1726.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,4098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,9659.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2090.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,24.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1973.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3592.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,21.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,7576.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,133508,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1522.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,129.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3153.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,66122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,685.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,245.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,220.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,9106.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,8375,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4975.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,32.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4329.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,24276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,451.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,714.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,5136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,38.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,577,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2288.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,234.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1926,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,10991.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3528,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1199.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1446,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,620.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1448.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,14935.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,200583,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1614.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2089,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,5630.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,5220,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1782.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3723.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,25019.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,378492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,23.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2067.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,504.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,238.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,18470.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,66516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,753.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,7943,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1876.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3959,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,254.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1007.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,289.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,42.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1576.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1372.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1651.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1595.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,663.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2010,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,222.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,6325.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1330.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,55.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1392.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,31.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1984.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3140.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,10608.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2100,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4224.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4298.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,5332.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3149,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,833.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3958.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,38.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,43.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,622.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1575.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,3144,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1713.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,38.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,298.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,125.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,561,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,3415.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,16058,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2138.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,69.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,11889.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,5691,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,328.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1128.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1036.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2814.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,2833.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,910.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,502.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,5114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,4386.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,5844,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,1251.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,38.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,us,22.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(804): get,track_slice,,us,584.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(804): get,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(117): __instancecheck__,track_slice,,us,243.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(117): __instancecheck__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(260): __init__,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(260): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(309): __init__,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(309): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(319): decode,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(319): decode,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(16): exists,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(16): exists,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(39): isdir,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(39): isdir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(1390): _handle_fromlist,track_slice,,us,21.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(1390): _handle_fromlist,track_slice,,calls,49,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(645): parent,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(645): parent,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(200): makedirs,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(200): makedirs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(709): __getitem__,track_slice,,us,1873.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(709): __getitem__,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(791): encode,track_slice,,us,1009.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(791): encode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(795): decode,track_slice,,us,409.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(795): decode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(808): getenv,track_slice,,us,652.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(808): getenv,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(100): split,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(100): split,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(138): splitroot,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(138): splitroot,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(41): _get_sep,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(41): _get_sep,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(71): join,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(71): join,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(0): ,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(0): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(1): ,track_slice,,us,434.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(1): ,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(1): ,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(1): launcher,track_slice,,us,1176.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(1): launcher,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,13.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): __eq__,track_slice,,us,991.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): __eq__,track_slice,,calls,3114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): __hash__,track_slice,,us,1737.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): __hash__,track_slice,,calls,4158,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): __init__,track_slice,,us,4087.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): __init__,track_slice,,calls,7403,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): __repr__,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): dynamic_func,track_slice,,us,23088.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(2): dynamic_func,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,13.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,12.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,12.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,35.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(404): execution_fn,track_slice,,us,7883.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(404): execution_fn,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,16.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,base64.py(166): _b32encode,track_slice,,us,20.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,base64.py(166): _b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,base64.py(249): b32encode,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,base64.py(249): b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,collections/__init__.py(355): namedtuple,track_slice,,us,102.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,collections/__init__.py(355): namedtuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,collections/__init__.py(429): ,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,collections/__init__.py(429): ,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(104): __init__,track_slice,,us,6004.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(104): __init__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(132): __enter__,track_slice,,us,3203.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(132): __enter__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(141): __exit__,track_slice,,us,2804.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(141): __exit__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(299): helper,track_slice,,us,3801.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(299): helper,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(772): __init__,track_slice,,us,581.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(772): __init__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(775): __enter__,track_slice,,us,623.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(775): __enter__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(778): __exit__,track_slice,,us,456.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,contextlib.py(778): __exit__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,copy.py(247): _reconstruct,track_slice,,us,1704.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,copy.py(247): _reconstruct,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,copy.py(61): copy,track_slice,,us,3414.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,copy.py(61): copy,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,copyreg.py(98): __newobj__,track_slice,,us,474.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,dataclasses.py(255): wrapper,track_slice,,us,12.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,dataclasses.py(255): wrapper,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(1128): __new__,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(1128): __new__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(1266): __hash__,track_slice,,us,1125.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(1266): __hash__,track_slice,,calls,10423,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(1291): value,track_slice,,us,342.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(1291): value,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(202): __get__,track_slice,,us,1592.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(202): __get__,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(720): __call__,track_slice,,us,21.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,enum.py(720): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,functools.py(982): __get__,track_slice,,us,1138.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,functools.py(982): __get__,track_slice,,calls,1108,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/__init__.py(183): dumps,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/__init__.py(183): dumps,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/__init__.py(274): load,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/__init__.py(274): load,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/__init__.py(299): loads,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/__init__.py(299): loads,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/decoder.py(333): decode,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/decoder.py(333): decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/decoder.py(344): raw_decode,track_slice,,us,14.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/encoder.py(105): __init__,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/encoder.py(183): encode,track_slice,,us,6.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/encoder.py(183): encode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/encoder.py(205): iterencode,track_slice,,us,42.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,json/encoder.py(205): iterencode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,logging/__init__.py(1517): debug,track_slice,,us,550.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,268.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,8.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,676.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,24.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1327.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,nn.Module: Sampler_0,track_slice,,us,1364.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,nn.Module: Sampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,922.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,572.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,75.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,409.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,83.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,570.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,157.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,944.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1717.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4176,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,110.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2892.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1005): open,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1005): open,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1015): read_bytes,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1015): read_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1022): read_text,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1022): read_text,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1157): __init__,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1157): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1164): __new__,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(1164): __new__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(358): __init__,track_slice,,us,14.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(358): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(380): with_segments,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(380): with_segments,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(387): _parse_path,track_slice,,us,39.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(387): _parse_path,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(407): _load_parts,track_slice,,us,12.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(407): _load_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(437): __str__,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(437): __str__,track_slice,,calls,11,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(447): __fspath__,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(447): __fspath__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(551): drive,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(551): drive,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(560): root,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(560): root,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(569): _tail,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(569): _tail,track_slice,,calls,25,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(583): name,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(583): name,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(591): suffix,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(591): suffix,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(711): joinpath,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(711): joinpath,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(719): __truediv__,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(719): __truediv__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(731): parent,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,pathlib.py(731): parent,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,queue.py(122): put,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,queue.py(213): _put,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(299): __enter__,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(302): __exit__,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(314): _is_owned,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(394): notify,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_compile.py(42): inner,track_slice,,us,30.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_compile.py(42): inner,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,225.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,81.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,59.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,118.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,25.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,532.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,206.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,993.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,98.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4523.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,28.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,255.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,929.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,144.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1577.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,38.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,3174.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,2737.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,749.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,286.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,3858,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,11821.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,190.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,331.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,347.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,604.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,3046.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,525.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,15110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1079): __call__,track_slice,,us,639.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,1038.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,848.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1145): ,track_slice,,us,506.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1145): ,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1257): __call__,track_slice,,us,1729.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,6037,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(864): __call__,track_slice,,us,571.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_ops.py(864): __call__,track_slice,,calls,2886,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,559.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_tensor.py(40): wrapped,track_slice,,us,23.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_tensor.py(40): wrapped,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,705.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,1823.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,772.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(823): ,track_slice,,us,541.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(823): ,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,2899.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3456.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2559.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7175.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1406.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2823.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,149.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,24.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1125.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1305.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3074.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,185.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,587.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,1964.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,2993.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,797.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,6266,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,969.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,1503.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1107.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1365.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,50.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,1096.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,150.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,261.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1206.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1445.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,738.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,521.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,544.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,1171.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,3875.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,3619,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,832.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,464.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(199): record,track_slice,,us,506.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,363.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,2635.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,264.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1219.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,895.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,us,1520.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,300.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,1060,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,us,373.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,19.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,us,6187.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,us,83.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,52.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5818.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2723.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,6102,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,19.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,23.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/storage.py(74): size,track_slice,,us,1609.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/storage.py(74): size,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,615.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,53.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,170.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,17881.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,144.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/__init__.py(67): cdiv,track_slice,,us,83.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,273.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(15): ,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(15): ,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(26): is_iterable,track_slice,,us,28.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(26): is_iterable,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(42): find_paths_if,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(42): find_paths_if,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(46): _impl,track_slice,,us,26.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/_utils.py(46): _impl,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,us,41.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,us,14508.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,us,11567.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,us,22.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,us,13.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(319): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(319): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,us,5669.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,us,198.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,us,130.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/compiler.py(26): __init__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/compiler.py(26): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,4146.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,calls,26,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(21): ,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(21): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(90): visit,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/driver.py(90): visit,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(226): compile,track_slice,,us,24.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(226): compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,265.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,us,40.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(411): ,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(411): ,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,us,330.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(485): run,track_slice,,us,160.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(485): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,us,3540.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(71): hash,track_slice,,us,17.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(71): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(73): ,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(73): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(107): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(107): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(117): get,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(117): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(130): get,track_slice,,us,1468.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(130): get,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(160): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(160): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(223): get,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(223): get,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(347): ,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(347): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,us,41.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(422): __call__,track_slice,,us,1748.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(422): __call__,track_slice,,calls,5104,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(75): __get__,track_slice,,us,4688.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/knobs.py(75): __get__,track_slice,,calls,15629,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,us,898.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,576.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/_allocation.py(46): get,track_slice,,us,843.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/_allocation.py(46): get,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,us,937.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(249): _base32,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(249): _base32,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(38): __init__,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(38): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(62): has_file,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(62): has_file,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(73): get_group,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/cache.py(73): get_group,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/driver.py(36): active,track_slice,,us,541.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,7659,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,us,1795.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,calls,1440,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,us,515.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(373): ,track_slice,,us,7494.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(373): ,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,us,4735.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,us,28.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(603): ,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(603): ,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,us,14.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,us,31.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(714): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(714): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(718): ,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(718): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(723): run,track_slice,,us,31871.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(723): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,us,16.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1174): __init__,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1215): __setattr__,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1269): __init__,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1273): ,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(166): _type_convert,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(175): _type_check,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(2187): cast,track_slice,,us,1989.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(2187): cast,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(2344): get_origin,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(2344): get_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(317): _deduplicate,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(392): inner,track_slice,,us,762.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(392): inner,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(494): __repr__,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(515): __getitem__,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(694): Union,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(730): ,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(747): Optional,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(892): __init__,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(962): __eq__,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(971): __hash__,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,6.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1384.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,us,35.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,us,86.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,us,661.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1657.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,559.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,18.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,344.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,576.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,126.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,246.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,437.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6550.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1530,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,64.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,35.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,15.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,784.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,764.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,811.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1050,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,15.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,1007.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2405.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,627.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,135.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,247.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,96.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,552.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,1235.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,us,8613.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,us,841.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,328.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1728.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,651.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,239.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,473.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2223259.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,9154765,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1793.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,538.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2461.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,381.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,877.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,320675.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,9154765,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,271051.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,9154765,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,7968037.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1391981.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,9156856,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1385922.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,9158947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5229.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9282.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,110.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,267.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2572,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,583.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,us,66.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,us,403.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,calls,5222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,887.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,203.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,333.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,453.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,454.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,us,257.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,us,2492.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,us,484.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,723443.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,9154760,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,180.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,307.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,140.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2496,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,111.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,1912.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,213.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,185.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,3855.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,665.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/logger.py(136): warning_once,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/logger.py(136): warning_once,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1119.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1113.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,1024.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,484.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,285.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,920.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,601.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,5298.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,688.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12330.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1387.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,518.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2399.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,3729.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,28.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2327.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,74.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,52.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,67.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,680.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4622,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,us,256.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,91.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,48.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,72.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,154.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,562.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,57.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,654.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,793.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,144.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,512.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(579): ,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,13.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,18.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1243.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,99.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,14.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,150.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2720.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4812.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1262.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1261.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,5346.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2640.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,256.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,15555.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,231.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3343.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7427.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2692.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5610.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,7862.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,134.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,479.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,41.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,566.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,94.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,126.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,90.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,22.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,437.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,354.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,340.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,282.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,us,2390.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,us,1977.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,us,215.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,us,846.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,us,1165.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,us,1437.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,us,12124.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,835.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3130.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2337.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,67.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,5929.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,11129.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6270,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,153.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,22,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3130.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9398,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14388.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3649.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,17.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,55.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,23.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3112.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,486.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,822.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1478.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,23.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,14.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,495.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,396.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,163.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,33.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,97.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,195.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,130.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,702.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,18.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,48,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16315.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,50.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9534.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,22300.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,360.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,19.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,768.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6657.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65602,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2597.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,251.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1608.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,303.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,101.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,243506.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,106.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,5945.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11119.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,176104.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,197.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,118990.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,24525.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2131.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6554.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4947.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,216.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,501.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3943.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2192.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,150910.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,417.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,376.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1105.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,180.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3184.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,836.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5402.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,3108.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,65445.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2196.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,468.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,505.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,30782.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,153.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2687.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,586.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7598.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,779.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,52.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,296.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,192.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,86.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,824.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7483594.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,user_annotation,nccl:_all_gather_base,track_slice,,us,33966.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,user_annotation,nccl:_all_gather_base,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,880,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,us,665.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,880,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,26310289.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(120): update,track_slice,,us,18.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(21): __enter__,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(27): __exit__,track_slice,,us,19.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(37): __init__,track_slice,,us,25.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,23.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(63): __iter__,track_slice,,us,43.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(95): copy,track_slice,,us,12.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(299): __enter__,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(302): __exit__,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(308): _release_save,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(311): _acquire_restore,track_slice,,us,59.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(314): _is_owned,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(323): wait,track_slice,,us,54.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(359): wait,track_slice,,us,840629.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(601): is_set,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(637): wait,track_slice,,us,19.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(655): wait,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,20.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/_monitor.py(69): run,track_slice,,us,71.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(100): acquire,track_slice,,us,31.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(104): release,track_slice,,us,18.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(108): __enter__,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(759): get_lock,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,20.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,14.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,27150761.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,(117): __instancecheck__,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,contextlib.py(104): __init__,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,contextlib.py(132): __enter__,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,contextlib.py(141): __exit__,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,contextlib.py(299): helper,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,queue.py(154): get,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,queue.py(171): get,track_slice,,us,16.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,queue.py(209): _qsize,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,queue.py(217): _get,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(1012): run,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(299): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(302): __exit__,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(308): _release_save,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(311): _acquire_restore,track_slice,,us,41.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(314): _is_owned,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(323): wait,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(355): wait,track_slice,,us,342.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(394): notify,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,49.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,60.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,25476874.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(120): update,track_slice,,us,15.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(27): __exit__,track_slice,,us,16.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(37): __init__,track_slice,,us,24.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,17.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(63): __iter__,track_slice,,us,40.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(95): copy,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(299): __enter__,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(302): __exit__,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(308): _release_save,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(311): _acquire_restore,track_slice,,us,67.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(314): _is_owned,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(323): wait,track_slice,,us,44.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(359): wait,track_slice,,us,1674132.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(601): is_set,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(637): wait,track_slice,,us,21.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(655): wait,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,18.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/_monitor.py(69): run,track_slice,,us,61.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(100): acquire,track_slice,,us,18.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(104): release,track_slice,,us,13.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(108): __enter__,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(111): __exit__,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(759): get_lock,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,148743,148753,Trace,PyTorch Profiler (0),track_slice,,us,27151553.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,148743,148753,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,148743,148753,,PyTorch Profiler,track,,us,27151553.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,739,,thread 739 (VLLM::Worker_TP),track,,us,27151457.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1237,,thread 1237 (VLLM::Worker_TP),track,,us,27151495.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1176,,thread 1176 (VLLM::Worker_TP),track,,us,27151452.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,1157,,thread 1157 (VLLM::Worker_TP),track,,us,27151448.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,4,,stream 4 ,track,,us,27022404.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,4,9,,stream 9 ,track,,us,26833987.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +2,739,880,,,track,,us,27127614.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank2.1782866359046496065.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,51528.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,9443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8763.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,us,242.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,calls,15,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,us,40.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,55.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,52.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,82.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,us,612.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,37117.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1003,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,us,2492.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,us,33771.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,us,7380.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,us,18033.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,us,8114.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,7022.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,calls,1029,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,47.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,117.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,52322.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,101.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,778.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1592.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,29393.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12970.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,25117.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,33270.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3214890.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1439,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1232.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,971110.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81587,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1166.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,774.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1264.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1100259.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81587,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1616357.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81571,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,616481.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81593,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2061.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1512.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,481.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10939.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,_fwd_kernel,track_slice,,us,2885508.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,_fwd_kernel,track_slice,,calls,479,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,_topk_topp_kernel,track_slice,,us,235332.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,_topk_topp_kernel,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,us,89.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,us,68568.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_2,track_slice,,us,7014.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_3,track_slice,,us,5893.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_4,track_slice,,us,582487.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_4,track_slice,,calls,82465,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_5,track_slice,,us,503491.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_5,track_slice,,calls,82475,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,722875.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,83515,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,536541.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8780.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,831696.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,1160879.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,82472,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,8455.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,10752.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61108.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,us,16648.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,121.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4480.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,12295.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,15033.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,108.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15184.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,94.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5762.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1048,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,us,42407.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,us,292.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,4146.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,93.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,204.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,164.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,14.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,8.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,us,96.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,us,14787.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,us,97.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5851.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5845.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,11831.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2068,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9725.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,6393.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2495165.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,83495,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,519253.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,83512,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4522285.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,963,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,us,93.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,us,58.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,us,53.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,us,799.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,calls,112,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,us,57.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,us,49.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,171.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,us,105.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,95.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,93.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,21003.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,2414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,3157281.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,164667,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,584693.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,38770.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,4800,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,880.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,51.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,5599.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,## Call CompiledFxGraph fddtb4isqcnnstxpu7r3vr7p3zg356lp4icl2wmsk3wp4faqmpbh ##,track_slice,,us,21.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,## Call CompiledFxGraph fddtb4isqcnnstxpu7r3vr7p3zg356lp4icl2wmsk3wp4faqmpbh ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,## Call CompiledFxGraph fmsi3zsbdjpqstzsx5ax3szinadtdz3pr3i2hynbpj22ynpszu7y ##,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,## Call CompiledFxGraph fmsi3zsbdjpqstzsx5ax3szinadtdz3pr3i2hynbpj22ynpszu7y ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,## Call CompiledFxGraph fp4aaawr2hu6tmgiyfdrg2qe3yfxnz53naj5b22dccpyeltbojmy ##,track_slice,,us,448.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,## Call CompiledFxGraph fp4aaawr2hu6tmgiyfdrg2qe3yfxnz53naj5b22dccpyeltbojmy ##,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1971.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1393.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,_rocm_C::paged_attention,track_slice,,us,1479.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,_rocm_C::paged_attention,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,_rocm_C::wvSplitK,track_slice,,us,57.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_local_scalar_dense,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_local_scalar_dense,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_scaled_mm,track_slice,,us,155766.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_scaled_mm,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_softmax,track_slice,,us,4197.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_to_copy,track_slice,,us,6784.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_to_copy,track_slice,,calls,5228,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_unsafe_view,track_slice,,us,586.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::_unsafe_view,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::add,track_slice,,us,9504.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::add,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::alias,track_slice,,us,1040.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::alias,track_slice,,calls,2964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::argmax,track_slice,,us,6727.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::argmax,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::as_strided,track_slice,,us,14776.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::as_strided,track_slice,,calls,61255,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::clone,track_slice,,us,1399.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::clone,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::copy_,track_slice,,us,39313.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::copy_,track_slice,,calls,17780,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::cumsum,track_slice,,us,137.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::cumsum,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::detach,track_slice,,us,1584.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::detach,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::detach_,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::detach_,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::div_,track_slice,,us,7199.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::div_,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::empty,track_slice,,us,9539.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::empty,track_slice,,calls,6501,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::empty_like,track_slice,,us,1984.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::empty_like,track_slice,,calls,2474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::empty_strided,track_slice,,us,13634.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::empty_strided,track_slice,,calls,6674,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::exponential_,track_slice,,us,5176.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::exponential_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::fill_,track_slice,,us,8614.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::fill_,track_slice,,calls,6300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::flatten,track_slice,,us,1115.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::flatten,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::index,track_slice,,us,19572.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::index,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::index_select,track_slice,,us,1776.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::index_select,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::item,track_slice,,us,16.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::item,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::le,track_slice,,us,72.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::le,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::lift_fresh,track_slice,,us,315.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::lift_fresh,track_slice,,calls,3157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::linear,track_slice,,us,1760.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::lt,track_slice,,us,2434.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::lt,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::masked_fill_,track_slice,,us,61.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::masked_fill_,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::matmul,track_slice,,us,1076.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::mm,track_slice,,us,37604.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::movedim,track_slice,,us,1749.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::movedim,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::permute,track_slice,,us,1156.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::permute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::reshape,track_slice,,us,4880.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::reshape,track_slice,,calls,5241,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::resize_,track_slice,,us,1752.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::resize_,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::resolve_conj,track_slice,,us,256.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::resolve_conj,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::resolve_neg,track_slice,,us,171.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::resolve_neg,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::rsub,track_slice,,us,43.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::rsub,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::scatter_,track_slice,,us,154.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::scatter_,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::select,track_slice,,us,3126.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::select,track_slice,,calls,2980,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::slice,track_slice,,us,33114.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::slice,track_slice,,calls,49001,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::softmax,track_slice,,us,2199.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::sort,track_slice,,us,346.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::sort,track_slice,,calls,34,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::sub,track_slice,,us,6117.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::sub,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::t,track_slice,,us,3654.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::t,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::to,track_slice,,us,4299.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::to,track_slice,,calls,10936,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::transpose,track_slice,,us,2501.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::transpose,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::unsqueeze,track_slice,,us,2471.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::unsqueeze,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::view,track_slice,,us,6254.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::view,track_slice,,calls,11101,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::zero_,track_slice,,us,23.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,aten::zero_,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,c10d::_allgather_base_,track_slice,,us,9017.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,c10d::_allgather_base_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,record_param_comms,track_slice,,us,8592.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,record_param_comms,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_2,track_slice,,us,41.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_2,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_3,track_slice,,us,33.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_4,track_slice,,us,673.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_4,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_5,track_slice,,us,594.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_5,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,676.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,719.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,45.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,746.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,711.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,34.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::all_gather,track_slice,,us,2490.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::all_reduce,track_slice,,us,919.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,2189.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,4202.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::unified_attention_with_output,track_slice,,us,887.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,578.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipCtxGetCurrent,track_slice,,us,407.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,964.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,2924,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipDeviceSynchronize,track_slice,,us,38.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipEventDestroy,track_slice,,us,1716.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipEventDestroy,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipEventRecord,track_slice,,us,16205.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipEventRecord,track_slice,,calls,6274,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipEventSynchronize,track_slice,,us,1240.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipEventSynchronize,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipExtLaunchKernel,track_slice,,us,6627.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipExtLaunchKernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,15397.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipFuncGetAttribute,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipFuncGetAttribute,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3451.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,8874,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipGraphLaunch,track_slice,,us,698787.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipGraphLaunch,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipHostMalloc,track_slice,,us,215.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipLaunchKernel,track_slice,,us,82950.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipLaunchKernel,track_slice,,calls,20567,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipMalloc,track_slice,,us,208.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipMalloc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipMemcpyAsync,track_slice,,us,53430.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipMemcpyAsync,track_slice,,calls,11532,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,23538.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipModuleLoadDataEx,track_slice,,us,913.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipModuleLoadDataEx,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipPointerGetAttribute,track_slice,,us,6544.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,28122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,us,409.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3815.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12559,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipStreamWaitEvent,track_slice,,us,6517.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/e4/ce4medilaxz4gld5iye5psocj4rzvolyosnxfz2edmvetm2prfsk.py(1174): call,track_slice,,us,40609.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/e4/ce4medilaxz4gld5iye5psocj4rzvolyosnxfz2edmvetm2prfsk.py(1174): call,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/kv/ckvhdmtauzxsupke5w7ljpykq7ojxumpbo2xfccgexynhyrwm2iv.py(793): call,track_slice,,us,203.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/kv/ckvhdmtauzxsupke5w7ljpykq7ojxumpbo2xfccgexynhyrwm2iv.py(793): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/xe/cxez56po26ei7uxsvy6h5tzcqrmatrnmexul4n55seqihbq6riwc.py(814): call,track_slice,,us,229.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/xe/cxez56po26ei7uxsvy6h5tzcqrmatrnmexul4n55seqihbq6riwc.py(814): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,632.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,162.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1154.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,608.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1540.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1010.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,165.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,239.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1366.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2866.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,172.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,66.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,236.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,8600.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,843.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1368.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2152,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1285.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,5059.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,281.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,37.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,974.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,101.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4182.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,23295,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1907.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4068.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,46960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1109.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,15069,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,44.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,126,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,77.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,8.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,6803.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,92799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,94.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,13299.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,15256.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,364397,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1773.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,35350.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,6784.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,65952,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,951.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3109,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,400960.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,9003733,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,14444.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,33848,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,8031.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,18827,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,58.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1532515.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,8999546,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,8.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,96,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,20.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1131.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3768.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3719.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1318.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,482.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,378254.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,9003734,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,363.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3174.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,212.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,138.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4089.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,9898,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1623.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3278.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,7.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1855.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,4098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,10800.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2037.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,21.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2087.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3728.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,25.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,7212.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,133508,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1577.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,131.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3009.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,66122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,770.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,255.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,218.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,9177.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,8375,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,5063.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,35.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4103.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,24276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,451.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,740.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,5136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,41.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,577,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2496.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,220.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1926,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,11494.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3528,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1192.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1446,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,633.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1527.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,14726.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,200583,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1621.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2089,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,5788.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,5220,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1844.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3867.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,25005.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,378492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,30.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2171.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,487.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,226.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,19998.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,66516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,767.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,7943,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1893.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3959,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,286.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1025.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,280.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,40.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1656.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1543.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1711.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1736.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,636.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2010,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,232.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,6614.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1256.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,55.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1423.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,22.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2019.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3102.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,10934.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2100,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4819.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4511.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,6526.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3149,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,800.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4043.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,41.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,47.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,613.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1696.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,3144,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1809.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,38.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,317.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,121.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,561,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,3480.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,16058,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2347.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,88.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,12456.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,5691,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,346.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1098.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1021.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2958.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,2936.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,825.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,528.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,5114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,4420.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,5844,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,1380.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,53.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,us,30.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(804): get,track_slice,,us,628.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(804): get,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(117): __instancecheck__,track_slice,,us,300.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(117): __instancecheck__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(260): __init__,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(260): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(309): __init__,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(309): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(319): decode,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(319): decode,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(16): exists,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(16): exists,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(39): isdir,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(39): isdir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(1390): _handle_fromlist,track_slice,,us,22.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(1390): _handle_fromlist,track_slice,,calls,49,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(645): parent,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(645): parent,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(200): makedirs,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(200): makedirs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(709): __getitem__,track_slice,,us,2070.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(709): __getitem__,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(791): encode,track_slice,,us,970.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(791): encode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(795): decode,track_slice,,us,450.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(795): decode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(808): getenv,track_slice,,us,694.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(808): getenv,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(100): split,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(100): split,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(138): splitroot,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(138): splitroot,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(41): _get_sep,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(41): _get_sep,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(71): join,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(71): join,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(0): ,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(0): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(1): ,track_slice,,us,466.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(1): ,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(1): ,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(1): launcher,track_slice,,us,1101.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(1): launcher,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,13.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,13.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): __eq__,track_slice,,us,1037.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): __eq__,track_slice,,calls,3114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): __hash__,track_slice,,us,1787.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): __hash__,track_slice,,calls,4158,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): __init__,track_slice,,us,4513.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): __init__,track_slice,,calls,7403,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): __repr__,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): dynamic_func,track_slice,,us,22112.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(2): dynamic_func,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,12.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,12.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,25.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(404): execution_fn,track_slice,,us,7459.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(404): execution_fn,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,15.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,base64.py(166): _b32encode,track_slice,,us,20.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,base64.py(166): _b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,base64.py(249): b32encode,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,base64.py(249): b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,collections/__init__.py(355): namedtuple,track_slice,,us,113.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,collections/__init__.py(355): namedtuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,collections/__init__.py(429): ,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,collections/__init__.py(429): ,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(104): __init__,track_slice,,us,6465.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(104): __init__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(132): __enter__,track_slice,,us,3298.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(132): __enter__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(141): __exit__,track_slice,,us,2900.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(141): __exit__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(299): helper,track_slice,,us,3998.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(299): helper,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(772): __init__,track_slice,,us,584.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(772): __init__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(775): __enter__,track_slice,,us,620.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(775): __enter__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(778): __exit__,track_slice,,us,491.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,contextlib.py(778): __exit__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,copy.py(247): _reconstruct,track_slice,,us,1784.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,copy.py(247): _reconstruct,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,copy.py(61): copy,track_slice,,us,3698.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,copy.py(61): copy,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,copyreg.py(98): __newobj__,track_slice,,us,487.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,dataclasses.py(255): wrapper,track_slice,,us,14.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,dataclasses.py(255): wrapper,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(1128): __new__,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(1128): __new__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(1266): __hash__,track_slice,,us,1161.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(1266): __hash__,track_slice,,calls,10423,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(1291): value,track_slice,,us,341.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(1291): value,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(202): __get__,track_slice,,us,1696.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(202): __get__,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(720): __call__,track_slice,,us,29.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,enum.py(720): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,functools.py(982): __get__,track_slice,,us,1249.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,functools.py(982): __get__,track_slice,,calls,1108,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/__init__.py(183): dumps,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/__init__.py(183): dumps,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/__init__.py(274): load,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/__init__.py(274): load,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/__init__.py(299): loads,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/__init__.py(299): loads,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/decoder.py(333): decode,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/decoder.py(333): decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/decoder.py(344): raw_decode,track_slice,,us,13.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/encoder.py(105): __init__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/encoder.py(183): encode,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/encoder.py(183): encode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/encoder.py(205): iterencode,track_slice,,us,47.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,json/encoder.py(205): iterencode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,logging/__init__.py(1517): debug,track_slice,,us,595.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,259.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,721.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,25.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1625.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,nn.Module: Sampler_0,track_slice,,us,1472.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,nn.Module: Sampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1060.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,616.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,15.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,84.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,540.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,85.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,638.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,147.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,1031.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1863.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4176,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,103.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,3066.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1005): open,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1005): open,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1015): read_bytes,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1015): read_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1022): read_text,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1022): read_text,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1157): __init__,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1157): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1164): __new__,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(1164): __new__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(358): __init__,track_slice,,us,15.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(358): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(380): with_segments,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(380): with_segments,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(387): _parse_path,track_slice,,us,39.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(387): _parse_path,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(407): _load_parts,track_slice,,us,14.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(407): _load_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(437): __str__,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(437): __str__,track_slice,,calls,11,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(447): __fspath__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(447): __fspath__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(551): drive,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(551): drive,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(560): root,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(560): root,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(569): _tail,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(569): _tail,track_slice,,calls,25,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(583): name,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(583): name,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(591): suffix,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(591): suffix,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(711): joinpath,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(711): joinpath,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(719): __truediv__,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(719): __truediv__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(731): parent,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,pathlib.py(731): parent,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,queue.py(122): put,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,queue.py(213): _put,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(1012): run,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(299): __enter__,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(302): __exit__,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(314): _is_owned,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(394): notify,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_compile.py(42): inner,track_slice,,us,33.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_compile.py(42): inner,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,207.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,98.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,64.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,121.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,31.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,539.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,204.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,954.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,93.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4586.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,31.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,266.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,898.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,130.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1625.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,39.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,3233.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,2633.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,714.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,292.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,3858,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,11851.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,200.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,361.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,390.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,617.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,2855.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,547.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,15110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1079): __call__,track_slice,,us,745.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,1102.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,946.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1145): ,track_slice,,us,583.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1145): ,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1257): __call__,track_slice,,us,1896.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,6037,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(864): __call__,track_slice,,us,537.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_ops.py(864): __call__,track_slice,,calls,2886,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,561.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_tensor.py(40): wrapped,track_slice,,us,26.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_tensor.py(40): wrapped,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,759.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,1833.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,894.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(823): ,track_slice,,us,515.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(823): ,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,3072.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3314.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2570.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7825.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1486.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,3225.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,164.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,30.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1262.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1764.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3905.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,214.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,555.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2254.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,3339.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,797.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,6266,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,947.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,1661.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1147.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1341.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,47.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,1766.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,128.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,271.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1289.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1684.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,783.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,474.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,545.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,926.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,4009.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,3619,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,918.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,518.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(199): record,track_slice,,us,569.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,341.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,2945.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,338.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1495.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,1012.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,us,1817.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,499.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,1060,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,us,382.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,13.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,23.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,us,6976.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,us,97.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,76.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,6153.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2908.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,6102,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,23.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,31.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/storage.py(74): size,track_slice,,us,1738.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/storage.py(74): size,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,626.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,49.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,169.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,19864.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,158.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/__init__.py(67): cdiv,track_slice,,us,76.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,275.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(15): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(15): ,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(26): is_iterable,track_slice,,us,32.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(26): is_iterable,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(42): find_paths_if,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(42): find_paths_if,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(46): _impl,track_slice,,us,27.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/_utils.py(46): _impl,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,us,8.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,us,82.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,us,14636.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,us,11781.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,us,29.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,us,16.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(319): ,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(319): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,us,5989.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,us,203.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,us,127.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/compiler.py(26): __init__,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/compiler.py(26): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,4373.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,calls,26,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(21): ,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(21): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(90): visit,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/driver.py(90): visit,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(226): compile,track_slice,,us,30.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(226): compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,278.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,us,45.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(411): ,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(411): ,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,us,312.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(485): run,track_slice,,us,174.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(485): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,us,3873.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(71): hash,track_slice,,us,19.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(71): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(73): ,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(73): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(107): get,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(107): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(117): get,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(117): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(130): get,track_slice,,us,1494.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(130): get,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(160): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(160): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(223): get,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(223): get,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(347): ,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(347): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,us,127.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(422): __call__,track_slice,,us,1870.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(422): __call__,track_slice,,calls,5104,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(75): __get__,track_slice,,us,4950.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/knobs.py(75): __get__,track_slice,,calls,15629,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,us,909.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,581.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/_allocation.py(46): get,track_slice,,us,652.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/_allocation.py(46): get,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,us,950.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(249): _base32,track_slice,,us,6.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(249): _base32,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(38): __init__,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(38): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(62): has_file,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(62): has_file,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(73): get_group,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/cache.py(73): get_group,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/driver.py(36): active,track_slice,,us,552.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,7659,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,us,1827.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,calls,1440,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,us,567.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(373): ,track_slice,,us,8017.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(373): ,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,us,13.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,us,4723.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,us,31.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(603): ,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(603): ,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,us,17.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,us,35.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(714): ,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(714): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(718): ,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(718): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(723): run,track_slice,,us,32917.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(723): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,us,20.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1161): _is_dunder,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1174): __init__,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1215): __setattr__,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1269): __init__,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1273): ,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(166): _type_convert,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(175): _type_check,track_slice,,us,12.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(2187): cast,track_slice,,us,2131.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(2187): cast,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(2344): get_origin,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(2344): get_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(317): _deduplicate,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(392): inner,track_slice,,us,886.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(392): inner,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(494): __repr__,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(515): __getitem__,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(694): Union,track_slice,,us,12.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(730): ,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(747): Optional,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(892): __init__,track_slice,,us,6.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(962): __eq__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(971): __hash__,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,7.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1462.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,us,40.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,us,99.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,us,566.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1672.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,479.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,18.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,361.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,593.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,107.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,235.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,423.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6795.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1530,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,68.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,47.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,12.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,731.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,765.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,859.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1050,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,21.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,1038.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2936.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,714.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,362.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,246.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,95.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,656.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,1122.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,us,9326.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,us,827.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,338.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1889.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,636.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,234.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,484.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2096312.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,8999551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1691.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,559.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2542.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,378.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,1009.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,302961.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,8999551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,274331.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,8999551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,7754394.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1370542.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,9001642,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1372130.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,9003733,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5634.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9826.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,144.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,318.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2572,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,561.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,us,85.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,us,477.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,calls,5222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,905.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,221.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,352.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,517.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,488.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,us,255.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,us,2924.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,us,680.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,725155.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,8999546,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,190.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,372.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,147.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2496,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,129.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2258.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,269.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,211.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,4176.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,792.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/logger.py(136): warning_once,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/logger.py(136): warning_once,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1080.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1051.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,997.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,468.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,274.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,1081.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,661.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,6009.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,934.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,13386.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1730.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,722.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2506.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,3746.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,25.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,3125.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,119.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,36.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,75.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,1012.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4622,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,us,398.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,105.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,56.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,86.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,168.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,555.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,78.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,1018.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,844.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,154.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,523.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(579): ,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,12.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,19.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1398.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,96.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,14.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,140.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2919.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4794.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1277.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1207.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,5255.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2628.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,236.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,15444.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,226.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3548.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7701.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2817.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,6021.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,8562.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,135.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,474.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,58.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,640.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,100.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,142.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,93.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,24.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,464.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,439.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,455.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,342.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,13.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,12.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,us,2796.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,us,2206.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,us,225.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,us,905.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,us,1429.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,us,1536.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,us,13412.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,887.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3579.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2585.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,73.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,6199.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,11276.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6270,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,165.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,22,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3215.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9398,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14451.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3743.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,18.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,55.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,23.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3336.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,495.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,851.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1609.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,24.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,16.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,597.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,462.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,164.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,34.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,104.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,214.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,150.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,726.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,24.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,48,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16268.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,51.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9509.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,23199.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,362.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,23.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,870.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6566.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65602,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2958.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,305.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1677.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,360.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,109.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,243633.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,120.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6232.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11107.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,174590.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,188.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,121038.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,25465.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2259.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6916.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,5448.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,379.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,598.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3879.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2571.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,154123.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,421.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,380.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1194.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,182.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3352.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,932.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5803.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,3110.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,68143.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2243.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,476.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,519.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,31809.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,158.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2881.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,652.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,8149.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,757.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,57.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,351.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,230.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,91.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,1018.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7469664.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,user_annotation,nccl:_all_gather_base,track_slice,,us,76034.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,user_annotation,nccl:_all_gather_base,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,877,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,us,566.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,877,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,calls,3118,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,25548486.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(120): update,track_slice,,us,21.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(27): __exit__,track_slice,,us,23.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(37): __init__,track_slice,,us,31.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,27.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(63): __iter__,track_slice,,us,53.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(95): copy,track_slice,,us,15.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(299): __enter__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(302): __exit__,track_slice,,us,8.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(308): _release_save,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(311): _acquire_restore,track_slice,,us,81.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(314): _is_owned,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(323): wait,track_slice,,us,67.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(359): wait,track_slice,,us,1601974.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(601): is_set,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(637): wait,track_slice,,us,26.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(655): wait,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,25.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/_monitor.py(69): run,track_slice,,us,99.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(100): acquire,track_slice,,us,44.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(104): release,track_slice,,us,23.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(108): __enter__,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(111): __exit__,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(759): get_lock,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,44.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,18.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,27150113.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,(117): __instancecheck__,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,contextlib.py(104): __init__,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,contextlib.py(132): __enter__,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,contextlib.py(141): __exit__,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,contextlib.py(299): helper,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,queue.py(154): get,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,queue.py(171): get,track_slice,,us,26.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,queue.py(209): _qsize,track_slice,,us,12.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,queue.py(217): _get,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(299): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(302): __exit__,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(308): _release_save,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(311): _acquire_restore,track_slice,,us,63.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(314): _is_owned,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(323): wait,track_slice,,us,17.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(355): wait,track_slice,,us,454.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(394): notify,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,16.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,63.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,20.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,117.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,6.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,24881819.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(120): update,track_slice,,us,17.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(17): __init__,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(27): __exit__,track_slice,,us,17.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(37): __init__,track_slice,,us,26.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,18.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(63): __iter__,track_slice,,us,46.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(95): copy,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(299): __enter__,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(302): __exit__,track_slice,,us,7.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(308): _release_save,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(311): _acquire_restore,track_slice,,us,73.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(314): _is_owned,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(323): wait,track_slice,,us,48.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(359): wait,track_slice,,us,2268831.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(601): is_set,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(637): wait,track_slice,,us,21.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(655): wait,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,21.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/_monitor.py(69): run,track_slice,,us,72.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(100): acquire,track_slice,,us,21.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(104): release,track_slice,,us,14.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(108): __enter__,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(111): __exit__,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(759): get_lock,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,148743,148753,Trace,PyTorch Profiler (0),track_slice,,us,27151249.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,148743,148753,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,148743,148753,,PyTorch Profiler,track,,us,27151249.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,813,,thread 813 (VLLM::Worker_TP),track,,us,27151147.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1255,,thread 1255 (VLLM::Worker_TP),track,,us,27151189.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1215,,thread 1215 (VLLM::Worker_TP),track,,us,27151140.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,1163,,thread 1163 (VLLM::Worker_TP),track,,us,27151136.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,9,,stream 9 ,track,,us,26833973.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,9,4,,stream 4 ,track,,us,27022235.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +7,813,877,,,track,,us,27125920.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank7.1782866355284278293.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,51247.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,9443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8745.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,us,246.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,calls,15,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,us,42.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,56.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,53.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,84.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,us,618.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,37269.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1003,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,us,4353.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,us,32930.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,us,14559.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,us,17967.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,us,7073.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,5543.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,calls,1029,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,50.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,110.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,51929.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,100.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,770.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1576.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,29683.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,13014.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,25398.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,33989.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3181419.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1437,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1253.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,958642.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81591,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1179.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,771.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1256.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1101168.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81587,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1583397.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81581,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,608597.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81594,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2063.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1519.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,455.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10995.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,_fwd_kernel,track_slice,,us,2881412.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,_fwd_kernel,track_slice,,calls,478,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,_topk_topp_kernel,track_slice,,us,235074.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,_topk_topp_kernel,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,us,91.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,us,69264.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_2,track_slice,,us,6935.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_3,track_slice,,us,5755.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_4,track_slice,,us,575975.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_4,track_slice,,calls,82467,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_5,track_slice,,us,494517.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_5,track_slice,,calls,82474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,715720.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,528682.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8616.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,823989.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,1159570.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,82471,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,8391.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,10739.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61272.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,us,16858.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,113.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4555.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,12147.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,15099.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,111.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15133.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,94.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5722.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1048,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,us,42421.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,us,290.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,4161.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,83.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,204.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,171.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,15.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,us,93.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,us,14487.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,us,87.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5815.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5807.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,11688.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2068,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9673.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,6296.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2493895.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,83490,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,512239.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4557064.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,963,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,us,83.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,us,57.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,us,49.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,us,793.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,calls,112,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,us,53.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,us,42.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,169.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,us,107.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,88.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,85.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,23133.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,2414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,3269585.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,164667,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,567324.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,83512,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,38574.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,4800,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,868.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,45.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,5506.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,## Call CompiledFxGraph f6w3dhximsfpn2ijluu2ojl3uuzxoeo5gtroyuaultw7xjxc47uu ##,track_slice,,us,22.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,## Call CompiledFxGraph f6w3dhximsfpn2ijluu2ojl3uuzxoeo5gtroyuaultw7xjxc47uu ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,## Call CompiledFxGraph fmaccdw62iah67cgqra2tadmr7kpkev6dsyjneb4fu2rio4qyklp ##,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,## Call CompiledFxGraph fmaccdw62iah67cgqra2tadmr7kpkev6dsyjneb4fu2rio4qyklp ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,## Call CompiledFxGraph fy5qbyh7zsrqqyfgm7u3otda2fz5cob7ey7m35edihemee6u6wgq ##,track_slice,,us,447.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,## Call CompiledFxGraph fy5qbyh7zsrqqyfgm7u3otda2fz5cob7ey7m35edihemee6u6wgq ##,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1985.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1394.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,_rocm_C::paged_attention,track_slice,,us,1536.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,_rocm_C::paged_attention,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,_rocm_C::wvSplitK,track_slice,,us,52.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_local_scalar_dense,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_local_scalar_dense,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_scaled_mm,track_slice,,us,156754.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_scaled_mm,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_softmax,track_slice,,us,3943.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_to_copy,track_slice,,us,6647.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_to_copy,track_slice,,calls,5228,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_unsafe_view,track_slice,,us,525.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::_unsafe_view,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::add,track_slice,,us,9125.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::add,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::alias,track_slice,,us,1124.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::alias,track_slice,,calls,2964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::argmax,track_slice,,us,6496.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::argmax,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::as_strided,track_slice,,us,14298.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::as_strided,track_slice,,calls,61255,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::clone,track_slice,,us,1254.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::clone,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::copy_,track_slice,,us,38066.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::copy_,track_slice,,calls,17780,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::cumsum,track_slice,,us,132.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::cumsum,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::detach,track_slice,,us,1565.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::detach,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::detach_,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::detach_,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::div_,track_slice,,us,6926.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::div_,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::empty,track_slice,,us,9427.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::empty,track_slice,,calls,6501,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::empty_like,track_slice,,us,1982.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::empty_like,track_slice,,calls,2474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::empty_strided,track_slice,,us,13301.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::empty_strided,track_slice,,calls,6674,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::exponential_,track_slice,,us,5000.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::exponential_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::fill_,track_slice,,us,8169.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::fill_,track_slice,,calls,6300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::flatten,track_slice,,us,1075.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::flatten,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::index,track_slice,,us,19209.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::index,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::index_select,track_slice,,us,1807.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::index_select,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::item,track_slice,,us,13.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::item,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::le,track_slice,,us,70.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::le,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::lift_fresh,track_slice,,us,347.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::lift_fresh,track_slice,,calls,3157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::linear,track_slice,,us,1721.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::lt,track_slice,,us,2370.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::lt,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::masked_fill_,track_slice,,us,61.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::masked_fill_,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::matmul,track_slice,,us,1041.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::mm,track_slice,,us,36743.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::movedim,track_slice,,us,1551.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::movedim,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::permute,track_slice,,us,1064.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::permute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::reshape,track_slice,,us,4596.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::reshape,track_slice,,calls,5241,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::resize_,track_slice,,us,1704.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::resize_,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::resolve_conj,track_slice,,us,201.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::resolve_conj,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::resolve_neg,track_slice,,us,134.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::resolve_neg,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::rsub,track_slice,,us,47.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::rsub,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::scatter_,track_slice,,us,133.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::scatter_,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::select,track_slice,,us,3317.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::select,track_slice,,calls,2980,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::slice,track_slice,,us,32081.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::slice,track_slice,,calls,49001,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::softmax,track_slice,,us,2114.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::sort,track_slice,,us,347.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::sort,track_slice,,calls,34,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::sub,track_slice,,us,5960.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::sub,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::t,track_slice,,us,3955.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::t,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::to,track_slice,,us,4004.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::to,track_slice,,calls,10936,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::transpose,track_slice,,us,2490.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::transpose,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::unsqueeze,track_slice,,us,2300.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::unsqueeze,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::view,track_slice,,us,5992.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::view,track_slice,,calls,11101,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::zero_,track_slice,,us,18.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,aten::zero_,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,c10d::_allgather_base_,track_slice,,us,8420.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,c10d::_allgather_base_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,record_param_comms,track_slice,,us,8041.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,record_param_comms,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_2,track_slice,,us,43.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_2,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_3,track_slice,,us,34.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_4,track_slice,,us,712.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_4,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_5,track_slice,,us,629.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_5,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,710.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,769.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,46.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,807.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,774.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,38.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::all_gather,track_slice,,us,2298.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::all_reduce,track_slice,,us,912.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,2244.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,4149.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::unified_attention_with_output,track_slice,,us,850.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,586.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipCtxGetCurrent,track_slice,,us,422.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,1022.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,2924,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipDeviceSynchronize,track_slice,,us,40.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipEventDestroy,track_slice,,us,1718.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipEventDestroy,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipEventRecord,track_slice,,us,16326.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipEventRecord,track_slice,,calls,6274,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipEventSynchronize,track_slice,,us,1227.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipEventSynchronize,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipExtLaunchKernel,track_slice,,us,6179.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipExtLaunchKernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,16862.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipFuncGetAttribute,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipFuncGetAttribute,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3338.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,8874,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipGraphLaunch,track_slice,,us,705827.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipGraphLaunch,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipHostMalloc,track_slice,,us,269.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipLaunchKernel,track_slice,,us,88351.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipLaunchKernel,track_slice,,calls,20567,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipMalloc,track_slice,,us,203.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipMalloc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipMemcpyAsync,track_slice,,us,56177.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipMemcpyAsync,track_slice,,calls,11532,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,25830.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipModuleLoadDataEx,track_slice,,us,986.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipModuleLoadDataEx,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipPointerGetAttribute,track_slice,,us,6661.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,28122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,us,432.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3637.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12559,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipStreamWaitEvent,track_slice,,us,6717.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ou/couhxyueyqkajcprf2pxomltozz4ukaelrbgdgnewv4ydbs2jaoa.py(799): call,track_slice,,us,235.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ou/couhxyueyqkajcprf2pxomltozz4ukaelrbgdgnewv4ydbs2jaoa.py(799): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/u6/cu6iw5idcmkkb57u4em6apllnjs4po5sxbwjgbqgdluxhrfpjsi4.py(1174): call,track_slice,,us,38670.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/u6/cu6iw5idcmkkb57u4em6apllnjs4po5sxbwjgbqgdluxhrfpjsi4.py(1174): call,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/wr/cwr4fxx5ixd2d53xhjm3qp3xtjeqdnj3xkolfng5sszryy7z2ktx.py(814): call,track_slice,,us,248.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/wr/cwr4fxx5ixd2d53xhjm3qp3xtjeqdnj3xkolfng5sszryy7z2ktx.py(814): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,534.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,156.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1128.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,534.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1495.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1053.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,163.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,240.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1283.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2972.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,178.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,67.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,245.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,9218.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,932.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1329.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2152,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1187.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4979.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,287.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,45.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,961.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,128.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4172.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,23295,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1855.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4651.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,46960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1136.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,15069,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,30.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,126,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,83.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,6434.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,92799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,110.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,13404.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,15341.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,364397,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1742.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,35826.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,6812.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,65952,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,909.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3109,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,12.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,397699.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,8981538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,14600.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,33848,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,7986.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,18827,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,58.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1527600.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,8977351,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,96,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,36.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1115.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4116.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3495.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1354.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,449.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,377944.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,8981539,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,366.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3056.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,208.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,159.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3899.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,9898,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1492.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2906.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1683.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,4098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,10260.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2028.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,25.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2038.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3603.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,20.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,7247.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,133508,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1429.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,145.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3274.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,66122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,778.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,240.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,230.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,9110.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,8375,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,5057.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,37.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,5737.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,24276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,462.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,728.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,5136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,48.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,577,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2342.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,249.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1926,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,11141.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3528,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1174.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1446,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,621.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1485.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,14696.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,200583,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1620.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2089,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,5792.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,5220,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1737.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3604.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,25752.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,378492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,24.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2117.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,493.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,253.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,18671.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,66516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,759.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,7943,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1898.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3959,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,280.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1015.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,295.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,41.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1554.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1451.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1654.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1627.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,633.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2010,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,222.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,6207.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1255.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,55.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1371.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,28.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1939.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2938.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,10674.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2100,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4810.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4343.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,5686.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3149,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,975.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4036.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,40.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,43.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,674.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1619.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,3144,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1782.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,42.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,291.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,123.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,561,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3418.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,16058,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2352.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,64.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,12160.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,5691,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,324.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1151.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1045.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,2731.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,3163.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,872.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,487.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,5114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,4414.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,5844,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,1350.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,43.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,us,21.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(804): get,track_slice,,us,582.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(804): get,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(117): __instancecheck__,track_slice,,us,263.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(117): __instancecheck__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(260): __init__,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(260): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(309): __init__,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(309): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(319): decode,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(319): decode,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(16): exists,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(16): exists,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(39): isdir,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(39): isdir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(1390): _handle_fromlist,track_slice,,us,22.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(1390): _handle_fromlist,track_slice,,calls,49,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(645): parent,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(645): parent,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(200): makedirs,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(200): makedirs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(709): __getitem__,track_slice,,us,2002.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(709): __getitem__,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(791): encode,track_slice,,us,1002.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(791): encode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(795): decode,track_slice,,us,440.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(795): decode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(808): getenv,track_slice,,us,655.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(808): getenv,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(100): split,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(100): split,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(138): splitroot,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(138): splitroot,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(41): _get_sep,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(41): _get_sep,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(71): join,track_slice,,us,13.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(71): join,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(0): ,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(0): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(1): ,track_slice,,us,466.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(1): ,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(1): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(1): launcher,track_slice,,us,1232.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(1): launcher,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,12.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,16.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,15.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,13.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): __eq__,track_slice,,us,1053.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): __eq__,track_slice,,calls,3114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): __hash__,track_slice,,us,1852.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): __hash__,track_slice,,calls,4158,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): __init__,track_slice,,us,4128.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): __init__,track_slice,,calls,7403,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): __repr__,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): dynamic_func,track_slice,,us,22538.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(2): dynamic_func,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,14.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,12.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,12.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,38.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(404): execution_fn,track_slice,,us,8282.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(404): execution_fn,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,12.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,13.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,13.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,15.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,19.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,base64.py(166): _b32encode,track_slice,,us,24.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,base64.py(166): _b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,base64.py(249): b32encode,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,base64.py(249): b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,collections/__init__.py(355): namedtuple,track_slice,,us,104.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,collections/__init__.py(355): namedtuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,collections/__init__.py(429): ,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,collections/__init__.py(429): ,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(104): __init__,track_slice,,us,6203.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(104): __init__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(132): __enter__,track_slice,,us,3282.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(132): __enter__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(141): __exit__,track_slice,,us,2868.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(141): __exit__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(299): helper,track_slice,,us,3972.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(299): helper,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(772): __init__,track_slice,,us,556.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(772): __init__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(775): __enter__,track_slice,,us,602.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(775): __enter__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(778): __exit__,track_slice,,us,457.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,contextlib.py(778): __exit__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,copy.py(247): _reconstruct,track_slice,,us,1734.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,copy.py(247): _reconstruct,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,copy.py(61): copy,track_slice,,us,3530.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,copy.py(61): copy,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,copyreg.py(98): __newobj__,track_slice,,us,444.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,dataclasses.py(255): wrapper,track_slice,,us,12.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,dataclasses.py(255): wrapper,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(1128): __new__,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(1128): __new__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(1266): __hash__,track_slice,,us,1135.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(1266): __hash__,track_slice,,calls,10423,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(1291): value,track_slice,,us,338.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(1291): value,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(202): __get__,track_slice,,us,1654.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(202): __get__,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(720): __call__,track_slice,,us,22.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,enum.py(720): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,functools.py(982): __get__,track_slice,,us,1202.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,functools.py(982): __get__,track_slice,,calls,1108,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/__init__.py(183): dumps,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/__init__.py(183): dumps,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/__init__.py(274): load,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/__init__.py(274): load,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/__init__.py(299): loads,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/__init__.py(299): loads,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/decoder.py(333): decode,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/decoder.py(333): decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/decoder.py(344): raw_decode,track_slice,,us,16.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/encoder.py(105): __init__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/encoder.py(183): encode,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/encoder.py(183): encode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/encoder.py(205): iterencode,track_slice,,us,48.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,json/encoder.py(205): iterencode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,logging/__init__.py(1517): debug,track_slice,,us,561.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,294.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,14.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,705.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,25.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1506.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,nn.Module: Sampler_0,track_slice,,us,1512.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,nn.Module: Sampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1011.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,595.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,12.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,78.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,499.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,79.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,666.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,148.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,961.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1836.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4176,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,104.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2933.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1005): open,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1005): open,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1015): read_bytes,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1015): read_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1022): read_text,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1022): read_text,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1157): __init__,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1157): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1164): __new__,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(1164): __new__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(358): __init__,track_slice,,us,15.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(358): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(380): with_segments,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(380): with_segments,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(387): _parse_path,track_slice,,us,40.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(387): _parse_path,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(407): _load_parts,track_slice,,us,13.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(407): _load_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(437): __str__,track_slice,,us,12.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(437): __str__,track_slice,,calls,11,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(447): __fspath__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(447): __fspath__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(551): drive,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(551): drive,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(560): root,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(560): root,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(569): _tail,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(569): _tail,track_slice,,calls,25,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(583): name,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(583): name,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(591): suffix,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(591): suffix,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(711): joinpath,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(711): joinpath,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(719): __truediv__,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(719): __truediv__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(731): parent,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,pathlib.py(731): parent,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,queue.py(122): put,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,queue.py(213): _put,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(1012): run,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(299): __enter__,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(302): __exit__,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(314): _is_owned,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(394): notify,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_compile.py(42): inner,track_slice,,us,39.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_compile.py(42): inner,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,267.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,90.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,15.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,65.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,120.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,27.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,572.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,206.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,982.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,93.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4769.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,30.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,260.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,950.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,129.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1657.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,40.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,3235.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,2720.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,754.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,316.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,3858,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,12328.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,213.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,394.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,361.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,680.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,3880.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,548.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,15110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1079): __call__,track_slice,,us,659.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,994.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,822.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1145): ,track_slice,,us,524.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1145): ,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1257): __call__,track_slice,,us,1892.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,6037,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(864): __call__,track_slice,,us,517.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_ops.py(864): __call__,track_slice,,calls,2886,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,565.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_tensor.py(40): wrapped,track_slice,,us,25.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_tensor.py(40): wrapped,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,726.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,1748.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,820.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(823): ,track_slice,,us,556.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(823): ,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,3065.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3512.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2659.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7831.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1430.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2968.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,169.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,27.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1379.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1534.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3464.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,204.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,545.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2194.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,3157.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,779.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,6266,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,863.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,1570.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1119.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1292.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,45.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,1246.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,129.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,262.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1268.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1527.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,746.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,426.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,520.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,1063.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,4018.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,3619,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,868.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,508.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(199): record,track_slice,,us,530.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,353.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,2698.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,289.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1339.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,949.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,us,1672.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,461.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,1060,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,13.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,us,399.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,26.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,7.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,us,6705.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,us,94.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,63.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5903.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,3207.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,6102,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,24.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,25.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/storage.py(74): size,track_slice,,us,1622.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/storage.py(74): size,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,628.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,58.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,177.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,19404.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,156.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/__init__.py(67): cdiv,track_slice,,us,79.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,270.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(15): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(15): ,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(26): is_iterable,track_slice,,us,29.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(26): is_iterable,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(42): find_paths_if,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(42): find_paths_if,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(46): _impl,track_slice,,us,26.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/_utils.py(46): _impl,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,us,74.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,us,15046.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,us,11675.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,us,23.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,us,14.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(319): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(319): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,us,5942.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,us,207.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,us,123.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/compiler.py(26): __init__,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/compiler.py(26): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,5056.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,calls,26,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(21): ,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(21): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(90): visit,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/driver.py(90): visit,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(226): compile,track_slice,,us,26.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(226): compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,us,8.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,269.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,us,44.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(411): ,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(411): ,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,us,324.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(485): run,track_slice,,us,162.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(485): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,us,3755.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(71): hash,track_slice,,us,18.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(71): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(73): ,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(73): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(107): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(107): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(117): get,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(117): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(130): get,track_slice,,us,1495.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(130): get,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(160): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(160): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(223): get,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(223): get,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(347): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(347): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,us,120.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(422): __call__,track_slice,,us,1776.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(422): __call__,track_slice,,calls,5104,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(75): __get__,track_slice,,us,4865.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/knobs.py(75): __get__,track_slice,,calls,15629,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,us,917.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,596.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/_allocation.py(46): get,track_slice,,us,1091.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/_allocation.py(46): get,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,us,1001.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(249): _base32,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(249): _base32,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(38): __init__,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(38): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(62): has_file,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(62): has_file,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(73): get_group,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/cache.py(73): get_group,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/driver.py(36): active,track_slice,,us,534.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,7659,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,us,1802.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,calls,1440,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,us,534.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(373): ,track_slice,,us,7867.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(373): ,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,us,4631.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,us,29.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(603): ,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(603): ,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,us,15.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,us,33.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(714): ,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(714): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(718): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(718): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(723): run,track_slice,,us,33062.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(723): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,us,16.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1174): __init__,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1215): __setattr__,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1269): __init__,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1273): ,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(166): _type_convert,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(175): _type_check,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(2187): cast,track_slice,,us,2044.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(2187): cast,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(2344): get_origin,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(2344): get_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(317): _deduplicate,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(392): inner,track_slice,,us,808.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(392): inner,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(494): __repr__,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(515): __getitem__,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(694): Union,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(730): ,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(747): Optional,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(892): __init__,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(962): __eq__,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(971): __hash__,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1364.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,us,58.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,us,93.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,us,523.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1580.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,493.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,17.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,350.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,638.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,157.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,247.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,462.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6643.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1530,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,81.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,37.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,13.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,1033.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,1075.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,814.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1050,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,16.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,8.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,995.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2438.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,651.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,267.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,374.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,95.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,590.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,1154.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,us,8739.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,us,821.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,306.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1790.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,695.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,233.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,475.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2070476.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,8977356,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1745.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,561.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2516.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,375.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,992.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,303121.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,8977356,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,257858.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,8977356,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,7851183.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1337715.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,8979447,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1361721.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,8981538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5595.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9581.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,121.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,291.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2572,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,567.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,us,69.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,us,476.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,calls,5222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,868.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,212.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,346.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,532.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,499.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,us,243.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,us,2669.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,us,564.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,700832.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,8977351,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,174.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,340.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,148.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2496,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,121.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,1994.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,221.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,196.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,3906.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,795.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/logger.py(136): warning_once,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/logger.py(136): warning_once,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1087.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1351.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,1157.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,495.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,278.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,1056.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,619.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,5590.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,703.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12798.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1496.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,560.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2314.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,6223.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,34.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2438.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,69.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,46.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,66.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,763.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4622,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,us,331.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,107.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,54.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,86.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,168.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,576.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,66.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,734.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,810.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,144.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,507.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(579): ,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,12.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,17.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1189.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,97.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,15.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,149.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2992.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4981.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1563.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1249.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,5432.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2668.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,263.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,16110.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,228.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3618.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,8210.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2682.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5820.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,8333.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,132.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,432.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,47.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,581.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,89.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,137.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,101.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,23.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,466.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,385.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,398.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,308.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,us,2575.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,us,2121.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,us,228.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,us,874.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,us,1156.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,us,1459.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,us,12583.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,872.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3332.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2612.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,63.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,6029.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,11420.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6270,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,165.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,22,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3146.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9398,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,15679.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3867.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,17.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,66.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,28.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3369.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,500.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,834.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1968.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,25.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,18.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,558.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,413.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,158.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,45.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,110.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,189.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,126.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,715.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,26.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,48,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16113.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,60.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9591.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,25304.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,388.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,51.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,842.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6719.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65602,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2856.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,301.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1597.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,392.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,101.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,257397.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,99.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6108.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11216.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,176707.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,186.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,120405.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,25308.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2190.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6981.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4885.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,241.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,543.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3950.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2552.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,153414.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,434.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,405.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1154.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,192.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3359.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,912.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5744.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,3155.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,67017.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2249.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,468.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,479.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,31206.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,168.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2799.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,758.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7825.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,771.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,63.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,308.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,234.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,94.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,1000.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7459893.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,user_annotation,nccl:_all_gather_base,track_slice,,us,90367.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,user_annotation,nccl:_all_gather_base,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,879,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,us,773.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,879,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,calls,3076,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,25592443.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(120): update,track_slice,,us,17.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(27): __exit__,track_slice,,us,21.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(37): __init__,track_slice,,us,25.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,24.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(63): __iter__,track_slice,,us,47.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(95): copy,track_slice,,us,13.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(299): __enter__,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(302): __exit__,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(308): _release_save,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(311): _acquire_restore,track_slice,,us,66.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(314): _is_owned,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(323): wait,track_slice,,us,53.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(359): wait,track_slice,,us,1558140.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(601): is_set,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(637): wait,track_slice,,us,21.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(655): wait,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,21.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/_monitor.py(69): run,track_slice,,us,99.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(100): acquire,track_slice,,us,37.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(104): release,track_slice,,us,17.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(108): __enter__,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(111): __exit__,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(759): get_lock,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,36.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,27150223.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,(117): __instancecheck__,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,contextlib.py(104): __init__,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,contextlib.py(132): __enter__,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,contextlib.py(141): __exit__,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,contextlib.py(299): helper,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,queue.py(154): get,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,queue.py(171): get,track_slice,,us,19.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,queue.py(209): _qsize,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,queue.py(217): _get,track_slice,,us,13.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(1012): run,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(299): __enter__,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(302): __exit__,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(308): _release_save,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(311): _acquire_restore,track_slice,,us,46.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(314): _is_owned,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(323): wait,track_slice,,us,13.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(355): wait,track_slice,,us,447.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(394): notify,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,45.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,15.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,150.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,24935017.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(120): update,track_slice,,us,17.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(27): __exit__,track_slice,,us,16.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(37): __init__,track_slice,,us,26.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,20.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(63): __iter__,track_slice,,us,43.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(95): copy,track_slice,,us,13.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(299): __enter__,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(302): __exit__,track_slice,,us,8.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(308): _release_save,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(311): _acquire_restore,track_slice,,us,58.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(314): _is_owned,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(323): wait,track_slice,,us,62.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(359): wait,track_slice,,us,2215649.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(601): is_set,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(637): wait,track_slice,,us,25.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(655): wait,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,21.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/_monitor.py(69): run,track_slice,,us,80.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(100): acquire,track_slice,,us,22.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(104): release,track_slice,,us,15.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(108): __enter__,track_slice,,us,8.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(111): __exit__,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(759): get_lock,track_slice,,us,6.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,148743,148753,Trace,PyTorch Profiler (0),track_slice,,us,27151291.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,148743,148753,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,148743,148753,,PyTorch Profiler,track,,us,27151291.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,798,,thread 798 (VLLM::Worker_TP),track,,us,27151173.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1252,,thread 1252 (VLLM::Worker_TP),track,,us,27151217.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1225,,thread 1225 (VLLM::Worker_TP),track,,us,27151164.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,1165,,thread 1165 (VLLM::Worker_TP),track,,us,27151159.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,4,,stream 4 ,track,,us,27022184.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,8,9,,stream 9 ,track,,us,26833985.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +6,798,879,,,track,,us,27130200.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank6.1782866357353655076.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,/usr/local/bin/vllm(6): ,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,/usr/local/bin/vllm(6): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,85.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,581,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,34.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,131,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,2236.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,66594,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,49.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,19.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,140457.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,131603,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,54.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,828,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,34.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,207,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,17.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,370,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,45.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,13.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,258,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,20.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,214,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,221.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1988,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,725.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,2716,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,20.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,688.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,5345,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,269.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,2163,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,70.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1736,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,29328.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,648157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,22.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,270,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,18083.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,463506,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,40.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,3206.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,323,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,55.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,33.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,23.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,203,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,37.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,55.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,28.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,527.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,6571,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,56.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,15.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,20,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,17.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,137,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,5759.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,150508,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,395.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1638,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,69.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,20.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,148,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,145.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,166.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1564,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,231.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,56.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,456,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,3405.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,68824,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,8800.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,133632,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,35.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,130,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,147.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,290,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,15.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,388,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,127,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,134,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,15.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,129,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,21.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,8975.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,66269,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,12544.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,139.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,968,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,3595.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,68030,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,30.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,471,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,1844.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,16234.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,133868,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,19.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,86,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,23.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,452,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,40.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,30.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,151,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,979.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,24.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,67,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,88.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,198,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,134.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,87,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,14845.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,206795,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,8.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,208,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,22.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,15.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,16.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,155.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1381,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,5750.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,65732,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,21.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,196,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,49.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,681,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,134.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1555,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,72.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,130,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,459.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,3039,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,141,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,460.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,3265,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,14.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,54.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,148,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,3875.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,65555,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,26.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,333,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,13.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,258,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,39.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,114.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,816,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,12497.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,68377,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,28.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,54.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,330,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,17.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,193,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,336.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1176,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,265972.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,16.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,256,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,274.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,84648.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,65471,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,27.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,234.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1010,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,17.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,190.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,40874.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,131070,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,20.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,263,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,us,17.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,,track_slice,,calls,148,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(341): __subclasshook__,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(341): __subclasshook__,track_slice,,calls,129,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(469): __new__,track_slice,,us,86.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(469): __new__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(511): _is_param_expr,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(511): _is_param_expr,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(804): get,track_slice,,us,15491.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(804): get,track_slice,,calls,67366,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(117): __instancecheck__,track_slice,,us,56.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(117): __instancecheck__,track_slice,,calls,581,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(121): __subclasscheck__,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(121): __subclasscheck__,track_slice,,calls,131,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(260): __init__,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(260): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(309): __init__,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(309): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(319): decode,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(319): decode,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(133): _splitext,track_slice,,us,46.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(133): _splitext,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(16): exists,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(16): exists,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(1390): _handle_fromlist,track_slice,,us,1089.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(1390): _handle_fromlist,track_slice,,calls,1175,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(645): parent,track_slice,,us,21.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(645): parent,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(709): __getitem__,track_slice,,us,26088.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(709): __getitem__,track_slice,,calls,66847,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(791): encode,track_slice,,us,12901.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(791): encode,track_slice,,calls,66847,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(808): getenv,track_slice,,us,9441.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(808): getenv,track_slice,,calls,66783,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(117): splitext,track_slice,,us,52.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(117): splitext,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(169): basename,track_slice,,us,66.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(169): basename,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(41): _get_sep,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(41): _get_sep,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(52): normcase,track_slice,,us,27.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(52): normcase,track_slice,,calls,222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(1): ,track_slice,,us,475.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(1): ,track_slice,,calls,1111,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(2): __init__,track_slice,,us,8901.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,(2): __init__,track_slice,,calls,68032,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(17): __init__,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(17): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(21): __enter__,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(27): __exit__,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(39): _remove,track_slice,,us,189.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(39): _remove,track_slice,,calls,775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(63): __iter__,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(70): __iter__,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(70): __iter__,track_slice,,calls,11,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(72): __len__,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(72): __len__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(85): add,track_slice,,us,289.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,_weakrefset.py(85): add,track_slice,,calls,776,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1968): __new__,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1968): __new__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1971): __init__,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1971): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1976): __aenter__,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1976): __aenter__,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1977): __aenter__,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1977): __aenter__,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1979): __aexit__,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1979): __aexit__,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1991): total_tokens,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1991): total_tokens,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2016): _notify_next_waiter,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2016): _notify_next_waiter,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2025): acquire_on_behalf_of_nowait,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2025): acquire_on_behalf_of_nowait,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2036): acquire,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2036): acquire,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2037): acquire,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2037): acquire,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2039): acquire_on_behalf_of,track_slice,,us,17.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2039): acquire_on_behalf_of,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2058): acquire_on_behalf_of,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2058): acquire_on_behalf_of,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2063): release,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2063): release,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2066): release_on_behalf_of,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2066): release_on_behalf_of,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2360): current_token,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2360): current_token,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2364): current_time,track_slice,,us,12.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2364): current_time,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2372): checkpoint,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2372): checkpoint,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2374): checkpoint,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2374): checkpoint,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2376): checkpoint_if_cancelled,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2376): checkpoint_if_cancelled,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2395): cancel_shielded_checkpoint,track_slice,,us,18.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2395): cancel_shielded_checkpoint,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2398): cancel_shielded_checkpoint,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2398): cancel_shielded_checkpoint,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2433): create_task_group,track_slice,,us,16.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2433): create_task_group,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2459): run_sync_in_worker_thread,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2459): run_sync_in_worker_thread,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2467): run_sync_in_worker_thread,track_slice,,us,29.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2467): run_sync_in_worker_thread,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2480): run_sync_in_worker_thread,track_slice,,us,71.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2480): run_sync_in_worker_thread,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2518): run_sync_in_worker_thread,track_slice,,us,20.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2518): run_sync_in_worker_thread,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2952): current_default_thread_limiter,track_slice,,us,7.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2952): current_default_thread_limiter,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(308): find_root_task,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(308): find_root_task,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(339): get_callable_name,track_slice,,us,26.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(339): get_callable_name,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(352): _task_started,track_slice,,us,28.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(352): _task_started,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(370): is_anyio_cancellation,track_slice,,us,22.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(370): is_anyio_cancellation,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(390): __new__,track_slice,,us,22.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(390): __new__,track_slice,,calls,136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(395): __init__,track_slice,,us,50.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(395): __init__,track_slice,,calls,136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(413): __enter__,track_slice,,us,238.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(413): __enter__,track_slice,,calls,136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(444): __exit__,track_slice,,us,292.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(444): __exit__,track_slice,,calls,136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(556): _parent_cancellation_is_visible_to_us,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(556): _parent_cancellation_is_visible_to_us,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(564): _timeout,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(564): _timeout,track_slice,,calls,136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(572): _deliver_cancellation,track_slice,,us,286.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(572): _deliver_cancellation,track_slice,,calls,256,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(618): _restart_cancellation_in_parent,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(618): _restart_cancellation_in_parent,track_slice,,calls,136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(637): cancel,track_slice,,us,122.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(637): cancel,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(668): cancel_called,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(668): cancel_called,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(680): shield,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(680): shield,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(701): __init__,track_slice,,us,6.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(701): __init__,track_slice,,calls,132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(739): __init__,track_slice,,us,31.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(739): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(746): __aenter__,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(746): __aenter__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(751): __aexit__,track_slice,,us,76.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(751): __aexit__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(771): __aexit__,track_slice,,us,143.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(771): __aexit__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(814): _spawn,track_slice,,us,227.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(814): _spawn,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(821): task_done,track_slice,,us,117.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(821): task_done,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(914): start_soon,track_slice,,us,16.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(914): start_soon,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(953): __init__,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(953): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(970): _report_result,track_slice,,us,25.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(970): _report_result,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(185): get_async_backend,track_slice,,us,32.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(185): get_async_backend,track_slice,,calls,87,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(205): current_async_library,track_slice,,us,25.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(205): current_async_library,track_slice,,calls,87,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(224): set_current_async_library,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(224): set_current_async_library,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_core/_tasks.py(164): create_task_group,track_slice,,us,24.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/_core/_tasks.py(164): create_task_group,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(107): __init__,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(107): __init__,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(142): _current_vars,track_slice,,us,18.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(142): _current_vars,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(157): get,track_slice,,us,13.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(157): get,track_slice,,calls,15,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(172): set,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(172): set,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(81): current_token,track_slice,,us,27.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/lowlevel.py(81): current_token,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/to_thread.py(25): run_sync,track_slice,,us,17.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/to_thread.py(25): run_sync,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/to_thread.py(63): run_sync,track_slice,,us,14.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,anyio/to_thread.py(63): run_sync,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(13): isfuture,track_slice,,us,43.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(13): isfuture,track_slice,,calls,282,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(24): _format_callbacks,track_slice,,us,31.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(24): _format_callbacks,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(30): format_cb,track_slice,,us,18.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(30): format_cb,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(44): _future_repr_info,track_slice,,us,84.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(44): _future_repr_info,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(64): _future_repr,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_futures.py(64): _future_repr,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_tasks.py(28): _task_repr,track_slice,,us,37.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_tasks.py(28): _task_repr,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_tasks.py(9): _task_repr_info,track_slice,,us,113.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/base_tasks.py(9): _task_repr_info,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/coroutines.py(20): iscoroutinefunction,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/coroutines.py(20): iscoroutinefunction,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/coroutines.py(32): iscoroutine,track_slice,,us,63.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/coroutines.py(32): iscoroutine,track_slice,,calls,454,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/coroutines.py(48): _format_coroutine,track_slice,,us,88.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/coroutines.py(48): _format_coroutine,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/coroutines.py(51): get_name,track_slice,,us,14.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/coroutines.py(51): get_name,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/format_helpers.py(10): _get_function_source,track_slice,,us,48.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/format_helpers.py(10): _get_function_source,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/format_helpers.py(22): _format_callback_source,track_slice,,us,43.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/format_helpers.py(22): _format_callback_source,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/format_helpers.py(30): _format_args_and_kwargs,track_slice,,us,23.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/format_helpers.py(30): _format_args_and_kwargs,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/format_helpers.py(44): _format_callback,track_slice,,us,47.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/format_helpers.py(44): _format_callback,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(301): _get_loop,track_slice,,us,32.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(301): _get_loop,track_slice,,calls,208,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(313): _set_result_unless_cancelled,track_slice,,us,413.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(313): _set_result_unless_cancelled,track_slice,,calls,277,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(347): _copy_future_state,track_slice,,us,28.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(347): _copy_future_state,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(367): _chain_future,track_slice,,us,18.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(367): _chain_future,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(383): _set_state,track_slice,,us,12.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(383): _set_state,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(389): _call_check_cancel,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(389): _call_check_cancel,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(411): wrap_future,track_slice,,us,17.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/futures.py(411): wrap_future,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(166): __init__,track_slice,,us,44.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(166): __init__,track_slice,,calls,133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(181): set,track_slice,,us,22284.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(181): set,track_slice,,calls,65624,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(193): clear,track_slice,,us,2458.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(193): clear,track_slice,,calls,66659,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(199): wait,track_slice,,us,27209.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(199): wait,track_slice,,calls,65613,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(212): wait,track_slice,,us,15702.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/locks.py(212): wait,track_slice,,calls,65549,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/mixins.py(12): _get_loop,track_slice,,us,8258.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/mixins.py(12): _get_loop,track_slice,,calls,66594,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(110): put,track_slice,,us,21.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(110): put,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(137): put_nowait,track_slice,,us,1604.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(137): put_nowait,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(149): get,track_slice,,us,1520.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(149): get,track_slice,,calls,1112,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(158): get,track_slice,,us,1042.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(158): get,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(175): get_nowait,track_slice,,us,773.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(175): get_nowait,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(50): _get,track_slice,,us,258.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(50): _get,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(53): _put,track_slice,,us,273.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(53): _put,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(58): _wakeup_next,track_slice,,us,787.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(58): _wakeup_next,track_slice,,calls,2221,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(95): empty,track_slice,,us,303.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(95): empty,track_slice,,calls,3267,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(99): full,track_slice,,us,141.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/queues.py(99): full,track_slice,,calls,1174,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/runners.py(118): run,track_slice,,us,24295339.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/runners.py(118): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/runners.py(195): run,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/runners.py(195): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(412): create_task,track_slice,,us,201.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(412): create_task,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(43): all_tasks,track_slice,,us,18.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(43): all_tasks,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(435): wait,track_slice,,us,142.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(435): wait,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(460): ,track_slice,,us,31.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(460): ,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(464): wait,track_slice,,us,46.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(464): wait,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(472): wait_for,track_slice,,us,65.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(472): wait_for,track_slice,,calls,63,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(520): wait_for,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(520): wait_for,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(522): _wait,track_slice,,us,89.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(522): _wait,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(534): _on_completion,track_slice,,us,25.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(534): _on_completion,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(550): _wait,track_slice,,us,124.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(550): _wait,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(641): __sleep0,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(641): __sleep0,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(650): __sleep0,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(650): __sleep0,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(653): sleep,track_slice,,us,1645.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(653): sleep,track_slice,,calls,285,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(656): sleep,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(656): sleep,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(665): sleep,track_slice,,us,346.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(665): sleep,track_slice,,calls,277,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(670): ensure_future,track_slice,,us,325.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(670): ensure_future,track_slice,,calls,194,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(70): _set_task_name,track_slice,,us,16.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(70): _set_task_name,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(710): __init__,track_slice,,us,78.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(710): __init__,track_slice,,calls,193,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(731): gather,track_slice,,us,422.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(731): gather,track_slice,,calls,258,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(767): _done_callback,track_slice,,us,336.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/tasks.py(767): _done_callback,track_slice,,calls,194,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/threads.py(12): to_thread,track_slice,,us,15.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/threads.py(12): to_thread,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/threads.py(25): to_thread,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/threads.py(25): to_thread,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(121): _on_timeout,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(121): _on_timeout,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(129): timeout,track_slice,,us,28.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(129): timeout,track_slice,,calls,63,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(33): __init__,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(33): __init__,track_slice,,calls,63,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(50): reschedule,track_slice,,us,97.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(50): reschedule,track_slice,,calls,63,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(85): __aenter__,track_slice,,us,49.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(85): __aenter__,track_slice,,calls,63,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(97): __aexit__,track_slice,,us,24.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,asyncio/timeouts.py(97): __aexit__,track_slice,,calls,63,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,collections/__init__.py(447): _make,track_slice,,us,25.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,collections/__init__.py(447): _make,track_slice,,calls,188,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(328): __init__,track_slice,,us,8.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(328): __init__,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(383): cancelled,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(383): cancelled,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(393): done,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(393): done,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(398): __get_result,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(398): __get_result,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(408): add_done_callback,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(408): add_done_callback,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(428): result,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(428): result,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(463): exception,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/_base.py(463): exception,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/thread.py(165): submit,track_slice,,us,37.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/thread.py(165): submit,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/thread.py(184): _adjust_thread_count,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/thread.py(184): _adjust_thread_count,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/thread.py(48): __init__,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,concurrent/futures/thread.py(48): __init__,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(104): __init__,track_slice,,us,68.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(104): __init__,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(132): __enter__,track_slice,,us,16.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(132): __enter__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(141): __exit__,track_slice,,us,19.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(141): __exit__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(205): __aenter__,track_slice,,us,33.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(205): __aenter__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(214): __aexit__,track_slice,,us,46.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(214): __aexit__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(217): __aexit__,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(217): __aexit__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(299): helper,track_slice,,us,24.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(299): helper,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(332): helper,track_slice,,us,18.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(332): helper,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(481): __init__,track_slice,,us,104.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(481): __init__,track_slice,,calls,207,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(704): __aenter__,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(704): __aenter__,track_slice,,calls,207,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(707): __aexit__,track_slice,,us,81.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,contextlib.py(707): __aexit__,track_slice,,calls,207,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(118): deepcopy,track_slice,,us,506.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(118): deepcopy,track_slice,,calls,832,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(172): _deepcopy_atomic,track_slice,,us,18.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(172): _deepcopy_atomic,track_slice,,calls,640,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(191): _deepcopy_list,track_slice,,us,32.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(191): _deepcopy_list,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(217): _deepcopy_dict,track_slice,,us,143.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(217): _deepcopy_dict,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(231): _keep_alive,track_slice,,us,105.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(231): _keep_alive,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(247): _reconstruct,track_slice,,us,119.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(247): _reconstruct,track_slice,,calls,138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(61): copy,track_slice,,us,283.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copy.py(61): copy,track_slice,,calls,202,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copyreg.py(98): __newobj__,track_slice,,us,30.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,copyreg.py(98): __newobj__,track_slice,,calls,138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/_policybase.py(209): header_max_count,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/_policybase.py(209): header_max_count,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/_policybase.py(289): _sanitize_header,track_slice,,us,35.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/_policybase.py(289): _sanitize_header,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/_policybase.py(313): header_store_parse,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/_policybase.py(313): header_store_parse,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/_policybase.py(319): header_fetch_parse,track_slice,,us,26.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/_policybase.py(319): header_fetch_parse,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(156): __init__,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(156): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(29): _splitparam,track_slice,,us,92.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(29): _splitparam,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(431): __setitem__,track_slice,,us,50.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(431): __setitem__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(504): get,track_slice,,us,59.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(504): get,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(606): get_content_type,track_slice,,us,98.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(606): get_content_type,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(630): get_content_maintype,track_slice,,us,24.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(630): get_content_maintype,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(639): get_content_subtype,track_slice,,us,18.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/message.py(639): get_content_subtype,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/utils.py(233): _format_timetuple_and_zone,track_slice,,us,164.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/utils.py(233): _format_timetuple_and_zone,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/utils.py(242): formatdate,track_slice,,us,156.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/utils.py(242): formatdate,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/utils.py(271): format_datetime,track_slice,,us,112.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/utils.py(271): format_datetime,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/utils.py(52): _has_surrogates,track_slice,,us,15.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,email/utils.py(52): _has_surrogates,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1128): __new__,track_slice,,us,2675.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1128): __new__,track_slice,,calls,16989,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1291): value,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1291): value,track_slice,,calls,129,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1543): _get_value,track_slice,,us,8391.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1543): _get_value,track_slice,,calls,32978,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1550): __or__,track_slice,,us,2759.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1550): __or__,track_slice,,calls,2285,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1561): __and__,track_slice,,us,9639.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1561): __and__,track_slice,,calls,8360,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1583): __invert__,track_slice,,us,406.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(1583): __invert__,track_slice,,calls,1043,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(202): __get__,track_slice,,us,40.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(202): __get__,track_slice,,calls,129,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(720): __call__,track_slice,,us,5247.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,enum.py(720): __call__,track_slice,,calls,16989,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/_compat/shared.py(47): lenient_issubclass,track_slice,,us,16.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/_compat/shared.py(47): lenient_issubclass,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/_compat/v2.py(173): validate,track_slice,,us,35.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/_compat/v2.py(173): validate,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/applications.py(1156): __call__,track_slice,,us,51.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/applications.py(1156): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/applications.py(1159): __call__,track_slice,,us,67.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/applications.py(1159): __call__,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(598): solve_dependencies,track_slice,,us,1659.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(598): solve_dependencies,track_slice,,calls,133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(738): _validate_value_with_model_field,track_slice,,us,19.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(738): _validate_value_with_model_field,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(784): request_params_to_args,track_slice,,us,45.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(784): request_params_to_args,track_slice,,calls,532,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(955): request_body_to_args,track_slice,,us,90.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(955): request_body_to_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/middleware/asyncexitstack.py(15): __call__,track_slice,,us,100.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/middleware/asyncexitstack.py(15): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/middleware/asyncexitstack.py(18): __call__,track_slice,,us,106.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/middleware/asyncexitstack.py(18): __call__,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(110): app,track_slice,,us,112.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(110): app,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(113): app,track_slice,,us,209.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(113): app,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(120): app,track_slice,,us,338.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(120): app,track_slice,,calls,91,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(121): app,track_slice,,us,99.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(121): app,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(134): app,track_slice,,us,73.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(134): app,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(254): _extract_endpoint_context,track_slice,,us,32.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(254): _extract_endpoint_context,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(320): run_endpoint_function,track_slice,,us,64.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(320): run_endpoint_function,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(328): run_endpoint_function,track_slice,,us,68.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(328): run_endpoint_function,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(330): run_endpoint_function,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(330): run_endpoint_function,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(382): app,track_slice,,us,742.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(382): app,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(409): app,track_slice,,us,113.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(409): app,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(674): app,track_slice,,us,173.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(674): app,track_slice,,calls,77,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(998): matches,track_slice,,us,638.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,fastapi/routing.py(998): matches,track_slice,,calls,2348,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,functools.py(424): _unwrap_partial,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,functools.py(424): _unwrap_partial,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1070): findsource,track_slice,,us,29.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1070): findsource,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1187): __init__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1187): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1196): tokeneater,track_slice,,us,17.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1196): tokeneater,track_slice,,calls,188,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1239): getblock,track_slice,,us,92.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1239): getblock,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1258): getsourcelines,track_slice,,us,17.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1258): getsourcelines,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1944): getcoroutinestate,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(1944): getcoroutinestate,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(2164): _signature_is_functionlike,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(2164): _signature_is_functionlike,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(298): ismodule,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(298): ismodule,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(302): isclass,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(302): isclass,track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(306): ismethod,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(306): ismethod,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(378): isfunction,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(378): isfunction,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(391): _has_code_flag,track_slice,,us,17.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(391): _has_code_flag,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(412): _has_coroutine_mark,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(412): _has_coroutine_mark,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(427): iscoroutinefunction,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(427): iscoroutinefunction,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(464): iscoroutine,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(464): iscoroutine,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(475): istraceback,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(475): istraceback,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(485): isframe,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(485): isframe,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(499): iscode,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(499): iscode,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(754): unwrap,track_slice,,us,36.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(754): unwrap,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(911): getfile,track_slice,,us,17.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(911): getfile,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(951): getsourcefile,track_slice,,us,24.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(951): getsourcefile,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(958): ,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(958): ,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(961): ,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(961): ,track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(988): getmodule,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,inspect.py(988): getmodule,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(1187): _ip_int_from_string,track_slice,,us,281.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(1187): _ip_int_from_string,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(1213): _parse_octet,track_slice,,us,147.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(1213): _parse_octet,track_slice,,calls,276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(1286): __init__,track_slice,,us,83.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(1286): __init__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(28): ip_address,track_slice,,us,37.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(28): ip_address,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(577): __eq__,track_slice,,us,15.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(577): __eq__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(612): __hash__,track_slice,,us,27.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ipaddress.py(612): __hash__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,json/__init__.py(244): detect_encoding,track_slice,,us,54.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,json/__init__.py(244): detect_encoding,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,json/__init__.py(299): loads,track_slice,,us,87.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,json/__init__.py(299): loads,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,json/decoder.py(333): decode,track_slice,,us,80.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,json/decoder.py(333): decode,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,json/decoder.py(344): raw_decode,track_slice,,us,7113.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,linecache.py(36): getlines,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,linecache.py(36): getlines,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,linecache.py(52): checkcache,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,linecache.py(52): checkcache,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,linecache.py(83): updatecache,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,linecache.py(83): updatecache,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1011): handle,track_slice,,us,81.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1011): handle,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1137): flush,track_slice,,us,55.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1137): flush,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1148): emit,track_slice,,us,91.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1148): emit,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,15.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1529): info,track_slice,,us,89.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1529): info,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,125.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,44.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1660): _log,track_slice,,us,112.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1660): _log,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1686): handle,track_slice,,us,58.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1686): handle,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(170): ,track_slice,,us,16.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(170): ,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,67.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,22.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,90.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(298): __init__,track_slice,,us,546.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(298): __init__,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(383): getMessage,track_slice,,us,62.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(447): usesTime,track_slice,,us,28.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(455): _format,track_slice,,us,53.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(455): _format,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(462): format,track_slice,,us,19.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(462): format,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(622): formatTime,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(622): formatTime,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(668): usesTime,track_slice,,us,27.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,19.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(690): format,track_slice,,us,101.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(690): format,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(831): filter,track_slice,,us,26.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(831): filter,track_slice,,calls,148,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(968): acquire,track_slice,,us,30.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(968): acquire,track_slice,,calls,148,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(975): release,track_slice,,us,21.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(975): release,track_slice,,calls,148,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(988): format,track_slice,,us,33.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,logging/__init__.py(988): format,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,multiprocessing/process.py(189): name,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,multiprocessing/process.py(189): name,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(102): __init__,track_slice,,us,18.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(102): __init__,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(138): labels,track_slice,,us,507.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(138): labels,track_slice,,calls,260,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(180): ,track_slice,,us,54.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(180): ,track_slice,,calls,715,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(25): _build_full_name,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(25): _build_full_name,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(330): _metric_init,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(330): _metric_init,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(335): inc,track_slice,,us,2723.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(335): inc,track_slice,,calls,9529,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(458): set,track_slice,,us,2795.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(458): set,track_slice,,calls,5230,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(538): _metric_init,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(538): _metric_init,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(544): observe,track_slice,,us,56.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(544): observe,track_slice,,calls,130,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(614): __init__,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(614): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(638): _prepare_buckets,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(638): _prepare_buckets,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(650): _metric_init,track_slice,,us,7.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(650): _metric_init,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(665): observe,track_slice,,us,33732.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(665): observe,track_slice,,calls,67478,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(67): _is_observable,track_slice,,us,4952.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(67): _is_observable,track_slice,,calls,82371,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(73): _raise_if_not_observable,track_slice,,us,9942.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(73): _raise_if_not_observable,track_slice,,calls,82367,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(80): _is_parent,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/metrics.py(80): _is_parent,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/utils.py(9): floatToGoString,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/utils.py(9): floatToGoString,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/validation.py(103): _validate_labelnames,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/validation.py(103): _validate_labelnames,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/validation.py(17): get_legacy_validation,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/validation.py(17): get_legacy_validation,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/validation.py(34): _validate_metric_name,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/validation.py(34): _validate_metric_name,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/validation.py(75): _validate_labelname,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/validation.py(75): _validate_labelname,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/values.py(13): __init__,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/values.py(13): __init__,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/values.py(18): inc,track_slice,,us,25996.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/values.py(18): inc,track_slice,,calls,144745,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/values.py(22): set,track_slice,,us,1473.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_client/values.py(22): set,track_slice,,calls,5230,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(22): __init__,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(22): __init__,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(601): _map_label_name_value,track_slice,,us,97.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(601): _map_label_name_value,track_slice,,calls,260,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(779): instrumentation,track_slice,,us,629.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(779): instrumentation,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(124): __call__,track_slice,,us,195.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(124): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(150): ,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(150): ,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(165): send_wrapper,track_slice,,us,14400.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(165): send_wrapper,track_slice,,calls,65673,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(174): __call__,track_slice,,us,519.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(174): __call__,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(229): _get_handler,track_slice,,us,29.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(229): _get_handler,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(243): _is_handler_excluded,track_slice,,us,45.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(243): _is_handler_excluded,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(257): ,track_slice,,us,54.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(257): ,track_slice,,calls,463,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/routing.py(47): _get_route_name,track_slice,,us,420.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/routing.py(47): _get_route_name,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/routing.py(69): get_route_name,track_slice,,us,65.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/routing.py(69): get_route_name,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/_internal/_fields.py(705): resolve_default_value,track_slice,,us,70.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/_internal/_fields.py(705): resolve_default_value,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/_internal/_model_construction.py(285): __getattr__,track_slice,,us,30.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/_internal/_model_construction.py(285): __getattr__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/_internal/_model_construction.py(364): init_private_attributes,track_slice,,us,96.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/_internal/_model_construction.py(364): init_private_attributes,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/_internal/_utils.py(336): smart_deepcopy,track_slice,,us,31.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/_internal/_utils.py(336): smart_deepcopy,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/fields.py(1432): __getattr__,track_slice,,us,92.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/fields.py(1432): __getattr__,track_slice,,calls,256,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/fields.py(1450): default_factory_takes_validated_data,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/fields.py(1450): default_factory_takes_validated_data,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/fields.py(1467): get_default,track_slice,,us,25.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/fields.py(1467): get_default,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(1015): __getattr__,track_slice,,us,141.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(1015): __getattr__,track_slice,,calls,320,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(1044): __setattr__,track_slice,,us,45.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(1044): __setattr__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(253): __init__,track_slice,,us,19243.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(253): __init__,track_slice,,calls,131006,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(493): model_dump_json,track_slice,,us,22680.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(493): model_dump_json,track_slice,,calls,65471,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(95): _model_field_setattr_handler,track_slice,,us,29.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/main.py(95): _model_field_setattr_handler,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/type_adapter.py(398): validate_python,track_slice,,us,19.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,pydantic/type_adapter.py(398): validate_python,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(122): put,track_slice,,us,147.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(122): put,track_slice,,calls,68,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(154): get,track_slice,,us,103.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(154): get,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(185): put_nowait,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(185): put_nowait,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(193): get_nowait,track_slice,,us,15.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(193): get_nowait,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(206): _init,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(206): _init,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(209): _qsize,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(209): _qsize,track_slice,,calls,68,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(213): _put,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(213): _put,track_slice,,calls,68,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(217): _get,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(217): _get,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(34): __init__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,queue.py(34): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ray/_private/log.py(75): record_factory,track_slice,,us,129.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,ray/_private/log.py(75): record_factory,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,re/__init__.py(226): compile,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,re/__init__.py(226): compile,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,re/__init__.py(280): _compile,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,re/__init__.py(280): _compile,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,reprlib.py(15): wrapper,track_slice,,us,58.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,reprlib.py(15): wrapper,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,reprlib.py(190): repr_instance,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,reprlib.py(190): repr_instance,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,reprlib.py(69): repr,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,reprlib.py(69): repr,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,reprlib.py(72): repr1,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,reprlib.py(72): repr1,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,sniffio/_impl.py(25): current_async_library,track_slice,,us,74.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,sniffio/_impl.py(25): current_async_library,track_slice,,calls,87,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_exception_handler.py(23): wrap_app_handling_exceptions,track_slice,,us,1539.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_exception_handler.py(23): wrap_app_handling_exceptions,track_slice,,calls,138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_exception_handler.py(31): wrapped_app,track_slice,,us,89.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_exception_handler.py(31): wrapped_app,track_slice,,calls,138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_exception_handler.py(34): sender,track_slice,,us,27538.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_exception_handler.py(34): sender,track_slice,,calls,131346,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_exception_handler.py(42): wrapped_app,track_slice,,us,141.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_exception_handler.py(42): wrapped_app,track_slice,,calls,438,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_utils.py(82): create_collapsing_task_group,track_slice,,us,34.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_utils.py(82): create_collapsing_task_group,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_utils.py(85): create_collapsing_task_group,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_utils.py(85): create_collapsing_task_group,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_utils.py(86): create_collapsing_task_group,track_slice,,us,42.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_utils.py(86): create_collapsing_task_group,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_utils.py(96): get_route_path,track_slice,,us,322.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/_utils.py(96): get_route_path,track_slice,,calls,3030,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/applications.py(79): routes,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/applications.py(79): routes,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/applications.py(86): __call__,track_slice,,us,54.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/applications.py(86): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/applications.py(90): __call__,track_slice,,us,79.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/applications.py(90): __call__,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/concurrency.py(32): run_in_threadpool,track_slice,,us,22.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/concurrency.py(32): run_in_threadpool,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/concurrency.py(34): run_in_threadpool,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/concurrency.py(34): run_in_threadpool,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(256): __init__,track_slice,,us,31.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(256): __init__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(383): __init__,track_slice,,us,263.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(383): __init__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(505): __init__,track_slice,,us,140.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(505): __init__,track_slice,,calls,402,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(534): items,track_slice,,us,39.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(534): items,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(537): getlist,track_slice,,us,41.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(537): getlist,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(544): __getitem__,track_slice,,us,398.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(544): __getitem__,track_slice,,calls,519,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(551): __contains__,track_slice,,us,39.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(551): __contains__,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(600): __delitem__,track_slice,,us,92.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(600): __delitem__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(673): __init__,track_slice,,us,20.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(673): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(678): __setattr__,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(678): __setattr__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(681): __getattr__,track_slice,,us,8.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/datastructures.py(681): __getattr__,track_slice,,calls,129,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/cors.py(78): __call__,track_slice,,us,125.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/cors.py(78): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/cors.py(88): __call__,track_slice,,us,120.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/cors.py(88): __call__,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/errors.py(149): __call__,track_slice,,us,70.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/errors.py(149): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/errors.py(156): _send,track_slice,,us,16313.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/errors.py(156): _send,track_slice,,calls,65673,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/errors.py(164): __call__,track_slice,,us,93.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/errors.py(164): __call__,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/exceptions.py(47): __call__,track_slice,,us,118.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/exceptions.py(47): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/exceptions.py(63): __call__,track_slice,,us,80.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/middleware/exceptions.py(63): __call__,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(105): app,track_slice,,us,15.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(105): app,track_slice,,calls,198,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(132): headers,track_slice,,us,141.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(132): headers,track_slice,,calls,651,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(138): query_params,track_slice,,us,84.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(138): query_params,track_slice,,calls,133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(144): path_params,track_slice,,us,23.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(144): path_params,track_slice,,calls,133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(149): cookies,track_slice,,us,50.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(149): cookies,track_slice,,calls,133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(188): state,track_slice,,us,55.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(188): state,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(217): __init__,track_slice,,us,128.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(217): __init__,track_slice,,calls,207,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(226): method,track_slice,,us,42.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(226): method,track_slice,,calls,134,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(230): receive,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(230): receive,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(234): stream,track_slice,,us,70.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(234): stream,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(242): stream,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(242): stream,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(248): stream,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(248): stream,track_slice,,calls,78,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(252): stream,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(252): stream,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(254): body,track_slice,,us,194.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(254): body,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(257): body,track_slice,,us,29.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(257): body,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(262): json,track_slice,,us,61.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(262): json,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(86): __init__,track_slice,,us,18.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(86): __init__,track_slice,,calls,207,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(96): __len__,track_slice,,us,16.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/requests.py(96): __len__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(163): __call__,track_slice,,us,16.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(163): __call__,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(225): __init__,track_slice,,us,25.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(225): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(242): listen_for_disconnect,track_slice,,us,16.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(242): listen_for_disconnect,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(244): listen_for_disconnect,track_slice,,us,46.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(244): listen_for_disconnect,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(248): stream_response,track_slice,,us,98.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(248): stream_response,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(250): stream_response,track_slice,,us,106763.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(250): stream_response,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(257): __call__,track_slice,,us,180.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(257): __call__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(273): __call__,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(273): __call__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(275): wrap,track_slice,,us,42.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(275): wrap,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(276): wrap,track_slice,,us,10163.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(276): wrap,track_slice,,calls,65471,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(280): __call__,track_slice,,us,118.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(280): __call__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(33): __init__,track_slice,,us,83.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(33): __init__,track_slice,,calls,135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(48): render,track_slice,,us,21.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(48): render,track_slice,,calls,135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(55): init_headers,track_slice,,us,339.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(55): init_headers,track_slice,,calls,199,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(83): headers,track_slice,,us,76.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/responses.py(83): headers,track_slice,,calls,199,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(238): matches,track_slice,,us,941.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(238): matches,track_slice,,calls,2900,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(267): handle,track_slice,,us,47.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(267): handle,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(276): handle,track_slice,,us,85.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(276): handle,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(387): matches,track_slice,,us,70.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(387): matches,track_slice,,calls,130,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(656): __call__,track_slice,,us,35.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(656): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(660): __call__,track_slice,,us,85.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(660): __call__,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(662): app,track_slice,,us,449.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(662): app,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(680): app,track_slice,,us,102.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,starlette/routing.py(680): app,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(1182): name,track_slice,,us,15.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(1182): name,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(1236): daemon,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(1236): daemon,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(124): RLock,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(124): RLock,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(1356): _make_invoke_excepthook,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(1356): _make_invoke_excepthook,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(1485): current_thread,track_slice,,us,23.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(1485): current_thread,track_slice,,calls,75,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(277): __init__,track_slice,,us,23.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(277): __init__,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(299): __enter__,track_slice,,us,32.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(299): __enter__,track_slice,,calls,157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(302): __exit__,track_slice,,us,30.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(302): __exit__,track_slice,,calls,157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(308): _release_save,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(311): _acquire_restore,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(314): _is_owned,track_slice,,us,17.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(314): _is_owned,track_slice,,calls,133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(323): wait,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(394): notify,track_slice,,us,39.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(394): notify,track_slice,,calls,132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(468): acquire,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(468): acquire,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(588): __init__,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(588): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(601): is_set,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(601): is_set,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(637): wait,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(637): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(884): __init__,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(884): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(975): start,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,threading.py(975): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(360): detect_encoding,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(360): detect_encoding,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(384): read_or_stop,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(384): read_or_stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(390): find_cookie,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(390): find_cookie,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(453): open,track_slice,,us,13.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(453): open,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(496): generate_tokens,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(496): generate_tokens,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(577): _generate_tokens_from_c_tokenizer,track_slice,,us,20.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(577): _generate_tokens_from_c_tokenizer,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(585): _generate_tokens_from_c_tokenizer,track_slice,,us,79.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tokenize.py(585): _generate_tokens_from_c_tokenizer,track_slice,,calls,188,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,torch/package/package_importer.py(740): _patched_getfile,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,torch/package/package_importer.py(740): _patched_getfile,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(1289): __getattr__,track_slice,,us,114.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(1289): __getattr__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(1464): convert_tokens_to_ids,track_slice,,us,26.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(1464): convert_tokens_to_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(285): __getattr__,track_slice,,us,21.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(285): __getattr__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,transformers/tokenization_utils_tokenizers.py(717): _convert_token_to_id_with_added_voc,track_slice,,us,17.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,transformers/tokenization_utils_tokenizers.py(717): _convert_token_to_id_with_added_voc,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tvm/script/parser/core/diagnostics.py(107): _patched_inspect_getfile,track_slice,,us,8.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,tvm/script/parser/core/diagnostics.py(107): _patched_inspect_getfile,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,typing.py(1285): __hash__,track_slice,,us,635.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,typing.py(1285): __hash__,track_slice,,calls,2094,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,typing.py(2187): cast,track_slice,,us,2353.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,typing.py(2187): cast,track_slice,,calls,67114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,typing.py(392): inner,track_slice,,us,1981.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,typing.py(392): inner,track_slice,,calls,3141,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,urllib/parse.py(757): parse_qsl,track_slice,,us,63.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,urllib/parse.py(757): parse_qsl,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,urllib/parse.py(875): quote,track_slice,,us,53.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,urllib/parse.py(875): quote,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,urllib/parse.py(951): quote_from_bytes,track_slice,,us,70.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,urllib/parse.py(951): quote_from_bytes,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uuid.py(139): __init__,track_slice,,us,298.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uuid.py(139): __init__,track_slice,,calls,129,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uuid.py(674): uuid1,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uuid.py(674): uuid1,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uuid.py(723): uuid4,track_slice,,us,103.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uuid.py(723): uuid4,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/config.py(351): asgi_version,track_slice,,us,21.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/config.py(351): asgi_version,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/logging.py(55): formatMessage,track_slice,,us,89.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/logging.py(55): formatMessage,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/logging.py(82): get_status_code,track_slice,,us,64.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/logging.py(82): get_status_code,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/logging.py(97): formatMessage,track_slice,,us,163.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/logging.py(97): formatMessage,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(146): __contains__,track_slice,,us,87.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(146): __contains__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(27): __call__,track_slice,,us,158.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(27): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(62): __call__,track_slice,,us,100.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(62): __call__,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/flow_control.py(21): pause_reading,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/flow_control.py(21): pause_reading,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/flow_control.py(26): resume_reading,track_slice,,us,20.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/flow_control.py(26): resume_reading,track_slice,,calls,275,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(137): _unset_keepalive_if_required,track_slice,,us,76.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(137): _unset_keepalive_if_required,track_slice,,calls,153,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(169): data_received,track_slice,,us,1048.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(169): data_received,track_slice,,calls,84,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(221): on_message_begin,track_slice,,us,102.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(221): on_message_begin,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(238): on_url,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(238): on_url,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(241): on_header,track_slice,,us,117.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(241): on_header,track_slice,,calls,470,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(247): on_headers_complete,track_slice,,us,388.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(247): on_headers_complete,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(298): _start_asgi_task,track_slice,,us,165.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(298): _start_asgi_task,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(312): on_body,track_slice,,us,150.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(312): on_body,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(320): on_message_complete,track_slice,,us,22.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(320): on_message_complete,track_slice,,calls,68,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(326): on_response_complete,track_slice,,us,199.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(326): on_response_complete,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(379): __init__,track_slice,,us,21.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(379): __init__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(419): run_asgi,track_slice,,us,75.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(419): run_asgi,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(421): run_asgi,track_slice,,us,128.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(421): run_asgi,track_slice,,calls,219,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(462): send,track_slice,,us,141182.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(462): send,track_slice,,calls,65673,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(562): receive,track_slice,,us,315.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(562): receive,track_slice,,calls,206,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(569): receive,track_slice,,us,109.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(569): receive,track_slice,,calls,142,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/utils.py(51): get_client_addr,track_slice,,us,48.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/utils.py(51): get_client_addr,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/utils.py(58): get_path_with_query_string,track_slice,,us,49.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/protocols/utils.py(58): get_path_with_query_string,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/server.py(238): main_loop,track_slice,,us,1152.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/server.py(238): main_loop,track_slice,,calls,269,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/server.py(241): on_tick,track_slice,,us,501.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/server.py(241): on_tick,track_slice,,calls,269,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/server.py(79): serve,track_slice,,us,339.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/server.py(79): serve,track_slice,,calls,269,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/server.py(96): _serve,track_slice,,us,257.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvicorn/server.py(96): _serve,track_slice,,calls,269,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvloop/__init__.py(96): run,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,uvloop/__init__.py(96): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/config/model.py(1227): get_vocab_size,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/config/model.py(1227): get_vocab_size,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/config/parallel.py(522): local_engines_only,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/config/parallel.py(522): local_engines_only,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/distributed/kv_transfer/kv_connector/v1/metrics.py(93): log,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/distributed/kv_transfer/kv_connector/v1/metrics.py(93): log,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/cli/main.py(95): main,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/cli/main.py(95): main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/cli/serve.py(148): cmd,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/cli/serve.py(148): cmd,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/launcher.py(164): watchdog_loop,track_slice,,us,28.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/launcher.py(164): watchdog_loop,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/launcher.py(168): terminate_if_errored,track_slice,,us,26.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/launcher.py(168): terminate_if_errored,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(30): completion,track_slice,,us,25.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(30): completion,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(34): create_completion,track_slice,,us,58.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(34): create_completion,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(54): create_completion,track_slice,,us,106.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(54): create_completion,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(202): build_tok_params,track_slice,,us,58.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(202): build_tok_params,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(244): to_sampling_params,track_slice,,us,322.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(244): to_sampling_params,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(349): validate_response_format,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(349): validate_response_format,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(380): check_structured_outputs_count,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(380): check_structured_outputs_count,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(408): check_logprobs,track_slice,,us,22.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(408): check_logprobs,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(433): validate_stream_options,track_slice,,us,18.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(433): validate_stream_options,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(444): validate_prompt_and_prompt_embeds,track_slice,,us,31.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(444): validate_prompt_and_prompt_embeds,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(463): check_cache_salt_support,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(463): check_cache_salt_support,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(108): render_completion_request,track_slice,,us,60.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(108): render_completion_request,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(110): create_completion,track_slice,,us,35.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(110): create_completion,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(124): create_completion,track_slice,,us,47.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(124): create_completion,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(128): _create_completion,track_slice,,us,24.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(128): _create_completion,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(138): _create_completion,track_slice,,us,638.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(138): _create_completion,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(279): completion_stream_generator,track_slice,,us,101.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(279): completion_stream_generator,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(305): completion_stream_generator,track_slice,,us,328677.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(305): completion_stream_generator,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(436): completion_stream_generator,track_slice,,us,15733.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(436): completion_stream_generator,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(463): completion_stream_generator,track_slice,,us,62.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(463): completion_stream_generator,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(474): completion_stream_generator,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(474): completion_stream_generator,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(85): render_completion_request,track_slice,,us,49.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(85): render_completion_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/protocol.py(35): __log_extra_fields__,track_slice,,us,173813.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/protocol.py(35): __log_extra_fields__,track_slice,,calls,196541,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/protocol.py(52): ,track_slice,,us,39298.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/protocol.py(52): ,track_slice,,calls,917106,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(192): _raise_if_error,track_slice,,us,4982.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(192): _raise_if_error,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(211): _check_model,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(211): _check_model,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(264): _maybe_get_adapters,track_slice,,us,32.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(264): _maybe_get_adapters,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(348): _extract_prompt_len,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(348): _extract_prompt_len,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(351): _log_inputs,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(351): _log_inputs,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(372): _get_trace_headers,track_slice,,us,29.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(372): _get_trace_headers,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(386): _base_request_id,track_slice,,us,24.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(386): _base_request_id,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(398): _get_data_parallel_rank,track_slice,,us,19.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(398): _get_data_parallel_rank,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(413): _with_kv_transfer_rejection_cleanup,track_slice,,us,24.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(413): _with_kv_transfer_rejection_cleanup,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(424): _with_kv_transfer_rejection_cleanup,track_slice,,us,59.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(424): _with_kv_transfer_rejection_cleanup,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(467): _is_model_supported,track_slice,,us,106.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(467): _is_model_supported,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(134): is_base_model,track_slice,,us,27.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(134): is_base_model,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(137): model_name,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(137): model_name,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(46): is_base_model,track_slice,,us,73.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(46): is_base_model,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(47): ,track_slice,,us,21.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(47): ,track_slice,,calls,256,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/elastic_ep/middleware.py(13): get_scaling_elastic_ep,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/elastic_ep/middleware.py(13): get_scaling_elastic_ep,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/elastic_ep/middleware.py(34): __call__,track_slice,,us,55.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/elastic_ep/middleware.py(34): __call__,track_slice,,calls,69,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(17): engine_client,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(17): engine_client,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(24): start_profile,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(24): start_profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(29): stop_profile,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(29): stop_profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(317): render_completion,track_slice,,us,36.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(317): render_completion,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(340): render_completion,track_slice,,us,65.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(340): render_completion,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(466): preprocess_completion,track_slice,,us,94.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(466): preprocess_completion,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(480): preprocess_completion,track_slice,,us,84.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(480): preprocess_completion,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(482): preprocess_cmpl,track_slice,,us,111.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(482): preprocess_cmpl,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(503): preprocess_cmpl,track_slice,,us,78.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(503): preprocess_cmpl,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(102): wrapper,track_slice,,us,84.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(102): wrapper,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(112): wrapper,track_slice,,us,55.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(112): wrapper,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(170): get_max_tokens,track_slice,,us,46.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(170): get_max_tokens,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(197): ,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(197): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(198): ,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(198): ,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(276): should_include_usage,track_slice,,us,25.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(276): should_include_usage,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(342): validate_json_request,track_slice,,us,47.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(342): validate_json_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(37): listen_for_disconnect,track_slice,,us,25.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(37): listen_for_disconnect,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(40): listen_for_disconnect,track_slice,,us,8.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(40): listen_for_disconnect,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(76): wrapper,track_slice,,us,118.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(76): wrapper,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(84): wrapper,track_slice,,us,70.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(84): wrapper,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/server_utils.py(460): _force_log,track_slice,,us,25.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/server_utils.py(460): _force_log,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1022): ,track_slice,,us,19.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1022): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1468): ,track_slice,,us,28.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1468): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1580): ,track_slice,,us,18165.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1580): ,track_slice,,calls,66583,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1830): ,track_slice,,us,59.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1830): ,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1888): __getattr__,track_slice,,us,13160.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(1888): __getattr__,track_slice,,calls,66847,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(779): ,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(779): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(995): ,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/envs.py(995): ,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/inputs/engine.py(365): split_enc_dec_input,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/inputs/engine.py(365): split_enc_dec_input,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/inputs/engine.py(42): tokens_input,track_slice,,us,22.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/inputs/engine.py(42): tokens_input,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/logging_utils/formatter.py(20): format,track_slice,,us,34.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/logging_utils/formatter.py(20): format,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/outputs.py(109): __init__,track_slice,,us,6299.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/outputs.py(109): __init__,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/outputs.py(145): add,track_slice,,us,86.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/outputs.py(145): add,track_slice,,calls,129,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/platforms/interface.py(188): get_max_output_tokens,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/platforms/interface.py(188): get_max_output_tokens,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/platforms/interface.py(879): validate_request,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/platforms/interface.py(879): validate_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(149): get_async_tokenizer,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(149): get_async_tokenizer,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(170): stat_mm_cache,track_slice,,us,460.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(170): stat_mm_cache,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(302): get_eos_token_id,track_slice,,us,23.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(302): get_eos_token_id,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(382): _render_prompt_async,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(382): _render_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(394): render_prompts_async,track_slice,,us,96.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(394): render_prompts_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(401): render_prompts_async,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(401): render_prompts_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(402): ,track_slice,,us,14.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(402): ,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(434): _tokenize_prompt_async,track_slice,,us,67.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(434): _tokenize_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(440): _tokenize_prompt_async,track_slice,,us,70.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(440): _tokenize_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(509): _tokenize_singleton_prompt_async,track_slice,,us,53.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(509): _tokenize_singleton_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(521): _tokenize_singleton_prompt_async,track_slice,,us,50.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(521): _tokenize_singleton_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(588): tokenize_prompt_async,track_slice,,us,18.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(588): tokenize_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(596): tokenize_prompt_async,track_slice,,us,26.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(596): tokenize_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(598): tokenize_prompts_async,track_slice,,us,55.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(598): tokenize_prompts_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(603): tokenize_prompts_async,track_slice,,us,13.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(603): tokenize_prompts_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(604): ,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(604): ,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(608): _apply_prompt_extras,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(608): _apply_prompt_extras,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(787): _process_tokens_async,track_slice,,us,45.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(787): _process_tokens_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(826): _process_singleton_async,track_slice,,us,18.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(826): _process_singleton_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(909): process_for_engine_async,track_slice,,us,19.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(909): process_for_engine_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(955): render_cmpl_async,track_slice,,us,31.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(955): render_cmpl_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(968): render_cmpl_async,track_slice,,us,33.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(968): render_cmpl_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(969): render_cmpl_async,track_slice,,us,133.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(969): render_cmpl_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(973): render_cmpl_async,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(973): render_cmpl_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(974): ,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(974): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(975): ,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/base.py(975): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/hf.py(1123): _process_tokens_async,track_slice,,us,50.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/hf.py(1123): _process_tokens_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(119): _validate_prompt_dict,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(119): _validate_prompt_dict,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(132): parse_dec_only_prompt,track_slice,,us,86.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(132): parse_dec_only_prompt,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(235): parse_model_prompt,track_slice,,us,15.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(235): parse_model_prompt,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(248): extract_target_prompt,track_slice,,us,29.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(248): extract_target_prompt,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(256): extract_prompt_components,track_slice,,us,62.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(256): extract_prompt_components,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(269): extract_prompt_len,track_slice,,us,33.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(269): extract_prompt_len,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(48): prompt_to_seq,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(48): prompt_to_seq,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(187): max_input_tokens,track_slice,,us,20.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(187): max_input_tokens,track_slice,,calls,320,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(195): __post_init__,track_slice,,us,19.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(195): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(298): get_encode_kwargs,track_slice,,us,28.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(298): get_encode_kwargs,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(324): _text_len_check,track_slice,,us,389.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(324): _text_len_check,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(351): _text_lowercase,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(351): _text_lowercase,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(355): _validate_text,track_slice,,us,36.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(355): _validate_text,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(365): apply_pre_tokenization,track_slice,,us,14.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(365): apply_pre_tokenization,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(380): _token_padding,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(380): _token_padding,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(396): _token_truncation,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(396): _token_truncation,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(415): _token_len_check,track_slice,,us,21.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(415): _token_len_check,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(442): _validate_tokens,track_slice,,us,45.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(442): _validate_tokens,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(453): apply_post_tokenization,track_slice,,us,15.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/renderers/params.py(453): apply_post_tokenization,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(355): from_optional,track_slice,,us,99.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(355): from_optional,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,103.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,393.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(579): ,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(584): ,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(592): ,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(602): update_from_generation_config,track_slice,,us,68.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(602): update_from_generation_config,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(632): update_from_tokenizer,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(632): update_from_tokenizer,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(694): num_logprobs,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(694): num_logprobs,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(704): clone,track_slice,,us,16.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(704): clone,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(711): verify,track_slice,,us,85.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(711): verify,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(725): _validate_logprobs,track_slice,,us,13.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(725): _validate_logprobs,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(787): _validate_logit_bias,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(787): _validate_logit_bias,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(807): _validate_logits_processors,track_slice,,us,49.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(807): _validate_logits_processors,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(814): _validate_allowed_token_ids,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(814): _validate_allowed_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(840): _validate_spec_decode,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(840): _validate_spec_decode,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(854): _validate_structured_outputs,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/sampling_params.py(854): _validate_structured_outputs,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(137): max_token_id,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(137): max_token_id,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(141): max_chars_per_token,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(141): max_chars_per_token,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(48): _borrow_from_pool,track_slice,,us,17.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(48): _borrow_from_pool,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(52): _borrow_from_pool,track_slice,,us,16.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(52): _borrow_from_pool,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(72): convert_tokens_to_ids,track_slice,,us,76.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(72): convert_tokens_to_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tracing/utils.py(57): contains_trace_headers,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tracing/utils.py(57): contains_trace_headers,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tracing/utils.py(59): ,track_slice,,us,27.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/tracing/utils.py(59): ,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/__init__.py(11): random_uuid,track_slice,,us,98.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/__init__.py(11): random_uuid,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,34.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(104): _batch_encode_loop,track_slice,,us,29.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(104): _batch_encode_loop,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(131): _batch_encode_loop,track_slice,,us,25795.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(131): _batch_encode_loop,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(177): _queue_key,track_slice,,us,27.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(177): _queue_key,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(298): merge_async_iterators,track_slice,,us,46.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(298): merge_async_iterators,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(309): merge_async_iterators,track_slice,,us,18760.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(309): merge_async_iterators,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(310): merge_async_iterators,track_slice,,us,13841.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(310): merge_async_iterators,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(55): __call__,track_slice,,us,60.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(55): __call__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(60): __call__,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(60): __call__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(62): encode,track_slice,,us,35.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(62): encode,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(63): encode,track_slice,,us,55.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(63): encode,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(73): _get_queue,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(73): _get_queue,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(93): _batch_encode_loop,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/async_utils.py(93): _batch_encode_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,78.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,74,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(137): params,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(137): params,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(201): finished,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(201): finished,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(244): __post_init__,track_slice,,us,431.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(244): __post_init__,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(63): __str__,track_slice,,us,18.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(63): __str__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(1044): is_running,track_slice,,us,30.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(1044): is_running,track_slice,,calls,133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(1053): errored,track_slice,,us,44.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(1053): errored,track_slice,,calls,133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(273): get_supported_tasks,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(273): get_supported_tasks,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(280): add_request,track_slice,,us,335.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(280): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(400): _add_request,track_slice,,us,42.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(400): _add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(524): generate,track_slice,,us,89.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(524): generate,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(579): generate,track_slice,,us,23341.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(579): generate,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(586): generate,track_slice,,us,25252.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(586): generate,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(637): _run_output_handler,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(637): _run_output_handler,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(660): output_handler,track_slice,,us,9661.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(660): output_handler,track_slice,,calls,1042,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(893): is_tracing_enabled,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(893): is_tracing_enabled,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(896): do_log_stats,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(896): do_log_stats,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(909): start_profile,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(909): start_profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(911): stop_profile,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(911): stop_profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1008): process_outputs_socket,track_slice,,us,4302.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1008): process_outputs_socket,track_slice,,calls,1043,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1053): get_output_async,track_slice,,us,1010.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1053): get_output_async,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1059): get_output_async,track_slice,,us,932.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1059): get_output_async,track_slice,,calls,1042,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1064): _send_input,track_slice,,us,71.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1064): _send_input,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1076): _send_input_message,track_slice,,us,1619.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1076): _send_input_message,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1101): call_utility_async,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1101): call_utility_async,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1102): call_utility_async,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1102): call_utility_async,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1104): _call_utility_async,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1104): _call_utility_async,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1116): _call_utility_async,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1116): _call_utility_async,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1121): add_request_async,track_slice,,us,74.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1121): add_request_async,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1141): profile_async,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1141): profile_async,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1144): profile_async,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1144): profile_async,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(454): validate_alive,track_slice,,us,1471.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(454): validate_alive,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(670): ensure_alive,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(670): ensure_alive,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(678): free_pending_messages,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(678): free_pending_messages,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(757): _process_utility_output,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(757): _process_utility_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(984): _ensure_output_queue_task,track_slice,,us,226.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(984): _ensure_output_queue_task,track_slice,,calls,1111,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(148): get_next_output_text,track_slice,,us,17735.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(148): get_next_output_text,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(168): __init__,track_slice,,us,4347.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(168): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(210): decode_next,track_slice,,us,10764.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(210): decode_next,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(223): _protected_step,track_slice,,us,8532.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(223): _protected_step,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(31): __init__,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(31): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(48): from_new_request,track_slice,,us,40.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(48): from_new_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(69): __init__,track_slice,,us,41.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(69): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(95): update,track_slice,,us,84945.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(95): update,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(146): _validate_lora,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(146): _validate_lora,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(222): assign_request_id,track_slice,,us,87.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(222): assign_request_id,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(242): process_inputs,track_slice,,us,466.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(242): process_inputs,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(387): _validate_prompt_len,track_slice,,us,16.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(387): _validate_prompt_len,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(434): _validate_model_input,track_slice,,us,146.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(434): _validate_model_input,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(486): _validate_model_inputs,track_slice,,us,23.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(486): _validate_model_inputs,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(75): tokenizer,track_slice,,us,16.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(75): tokenizer,track_slice,,calls,256,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(82): _validate_params,track_slice,,us,58.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(82): _validate_params,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(189): pop_prompt_logprobs,track_slice,,us,2901.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(189): pop_prompt_logprobs,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(348): update_from_output,track_slice,,us,3049.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(348): update_from_output,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(42): from_new_request,track_slice,,us,58.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(42): from_new_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(103): __del__,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(103): __del__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(130): __init__,track_slice,,us,70.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(130): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(210): from_new_request,track_slice,,us,143.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(210): from_new_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(272): make_request_output,track_slice,,us,53458.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(272): make_request_output,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(333): _new_request_output,track_slice,,us,99855.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(333): _new_request_output,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(376): _new_completion_output,track_slice,,us,63302.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(376): _new_completion_output,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(512): add_request,track_slice,,us,94.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(512): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(54): __init__,track_slice,,us,33.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(54): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(576): process_outputs,track_slice,,us,130785.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(576): process_outputs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(62): put,track_slice,,us,11839.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(62): put,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(695): _finish_request,track_slice,,us,48.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(695): _finish_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(709): update_scheduler_stats,track_slice,,us,262.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(709): update_scheduler_stats,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(774): _update_stats_from_output,track_slice,,us,15436.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(774): _update_stats_from_output,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(78): get,track_slice,,us,10320.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(78): get,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(795): _update_stats_from_finished,track_slice,,us,73.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(795): _update_stats_from_finished,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(81): get,track_slice,,us,29801.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(81): get,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(88): get_nowait,track_slice,,us,7432.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(88): get_nowait,track_slice,,calls,65407,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(98): close,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(98): close,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/parallel_sampling.py(134): observe_finished_request,track_slice,,us,23.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/engine/parallel_sampling.py(134): observe_finished_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1063): record,track_slice,,us,68695.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1063): record,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(132): _reset,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(132): _reset,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1338): record,track_slice,,us,1271.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1338): record,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1359): log,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1359): log,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(141): _enable_perf_stats,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(141): _enable_perf_stats,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(144): _track_iteration_stats,track_slice,,us,425.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(144): _track_iteration_stats,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(152): _get_throughput,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(152): _get_throughput,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(159): log_prefix,track_slice,,us,22.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(159): log_prefix,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(163): record,track_slice,,us,1544.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(163): record,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(198): _update_stats,track_slice,,us,16.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(198): _update_stats,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(215): aggregate_scheduler_stats,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(215): aggregate_scheduler_stats,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(219): log,track_slice,,us,94.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(219): log,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(380): record,track_slice,,us,621.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(380): record,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(397): log,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(397): log,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(67): log,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(67): log,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(101): empty,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(101): empty,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(106): hit_rate,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(106): hit_rate,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(304): update_from_output,track_slice,,us,52.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(304): update_from_output,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(313): get_by_source,track_slice,,us,895.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(313): get_by_source,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(328): __init__,track_slice,,us,1132.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(328): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(344): num_prompt_tokens,track_slice,,us,96.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(344): num_prompt_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(349): _time_since,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(349): _time_since,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(353): update_from_output,track_slice,,us,67629.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(353): update_from_output,track_slice,,calls,65536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(404): update_from_events,track_slice,,us,130.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(404): update_from_events,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(428): update_from_finished_request,track_slice,,us,137.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(428): update_from_finished_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(514): _request_update,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(514): _request_update,track_slice,,calls,192,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(525): request_waiting,track_slice,,us,24.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(525): request_waiting,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(528): request_running,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(528): request_running,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(531): request_finished,track_slice,,us,15.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(531): request_finished,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(534): update_scheduler_stats,track_slice,,us,539.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(534): update_scheduler_stats,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(54): observe,track_slice,,us,214.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(54): observe,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/sample/logits_processor/__init__.py(223): validate_logits_processors_parameters,track_slice,,us,22.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/sample/logits_processor/__init__.py(223): validate_logits_processors_parameters,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(132): __init__,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(132): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(166): encode,track_slice,,us,27.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(166): encode,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(340): decode,track_slice,,us,872.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(340): decode,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(350): dec_hook,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(350): dec_hook,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(367): _decode_utility_result,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(367): _decode_utility_result,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/spec_decode/metrics.py(78): log,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,vllm/v1/spec_decode/metrics.py(78): log,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(369): remove,track_slice,,us,15.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(369): remove,track_slice,,calls,68,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(410): __delitem__,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(410): __delitem__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(414): __getitem__,track_slice,,us,76.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(414): __getitem__,track_slice,,calls,223,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(427): __setitem__,track_slice,,us,30.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(427): __setitem__,track_slice,,calls,133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(451): get,track_slice,,us,34.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,weakref.py(451): get,track_slice,,calls,136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(193): cancel,track_slice,,us,53.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(193): cancel,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(270): recv_multipart,track_slice,,us,1138.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(270): recv_multipart,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(305): send_multipart,track_slice,,us,36.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(305): send_multipart,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(452): _remove_finished_future,track_slice,,us,106.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(452): _remove_finished_future,track_slice,,calls,1043,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(470): _add_recv_event,track_slice,,us,9318.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(470): _add_recv_event,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(49): _get_loop,track_slice,,us,566.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(49): _get_loop,track_slice,,calls,1043,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(525): _add_send_event,track_slice,,us,162.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(525): _add_send_event,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(586): _handle_recv,track_slice,,us,7321.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(586): _handle_recv,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(670): _handle_events,track_slice,,us,9639.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(670): _handle_events,track_slice,,calls,1043,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(682): _schedule_remaining_events,track_slice,,us,1949.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(682): _schedule_remaining_events,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(698): _add_io_state,track_slice,,us,1213.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(698): _add_io_state,track_slice,,calls,1043,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(704): _drop_io_state,track_slice,,us,2107.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(704): _drop_io_state,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(710): _update_handler,track_slice,,us,1114.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/_future.py(710): _update_handler,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/asyncio.py(106): _default_loop,track_slice,,us,351.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/asyncio.py(106): _default_loop,track_slice,,calls,1043,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/asyncio.py(151): ,track_slice,,us,1647.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/asyncio.py(151): ,track_slice,,calls,1043,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/attrsettr.py(43): __getattr__,track_slice,,us,2318.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/attrsettr.py(43): __getattr__,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/attrsettr.py(66): _get_attr_opt,track_slice,,us,989.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/attrsettr.py(66): _get_attr_opt,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/socket.py(376): __setattr__,track_slice,,us,1471.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/socket.py(376): __setattr__,track_slice,,calls,2086,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,1669.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,195,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/socket.py(700): send_multipart,track_slice,,us,150.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/socket.py(700): send_multipart,track_slice,,calls,65,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/socket.py(771): recv_multipart,track_slice,,us,6295.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,python_function,zmq/sugar/socket.py(771): recv_multipart,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,us,28.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,us,14.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,us,61.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,calls,54,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,us,18.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,us,33.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,us,61.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,us,26556843.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,us,21.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,(1): ,track_slice,,us,26.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,(1): ,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,multiprocessing/connection.py(1122): wait,track_slice,,us,596.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,multiprocessing/connection.py(1122): wait,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,multiprocessing/connection.py(1136): wait,track_slice,,us,84.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,multiprocessing/connection.py(1136): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(199): __enter__,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(199): __enter__,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(202): __exit__,track_slice,,us,64.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(202): __exit__,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(209): __init__,track_slice,,us,58.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(209): __init__,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(21): _fileobj_to_fd,track_slice,,us,28.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(21): _fileobj_to_fd,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(215): _fileobj_lookup,track_slice,,us,39.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(215): _fileobj_lookup,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(234): register,track_slice,,us,192.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(234): register,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(268): close,track_slice,,us,76.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(268): close,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(347): __init__,track_slice,,us,152.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(347): __init__,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(351): register,track_slice,,us,125.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(351): register,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(402): select,track_slice,,us,152.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(402): select,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(415): select,track_slice,,us,590405.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(415): select,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(63): __init__,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,selectors.py(63): __init__,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,threading.py(601): is_set,track_slice,,us,20.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,threading.py(601): is_set,track_slice,,calls,27,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,vllm/v1/engine/core_client.py(697): monitor_engine_cores,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,vllm/v1/engine/core_client.py(697): monitor_engine_cores,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,vllm/v1/engine/utils.py(230): monitor_engine_liveness,track_slice,,us,211.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,python_function,vllm/v1/engine/utils.py(230): monitor_engine_liveness,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,25.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,56.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,93.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,704,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,195,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,67.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,34.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,320,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,31.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,131,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,7.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,131,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,22.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,131,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,24.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,585882.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,24.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,26489092.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,30.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,384,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,813.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,320,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(823): items,track_slice,,us,37.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(823): items,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(845): __init__,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(845): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(892): __iter__,track_slice,,us,50.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(892): __iter__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(894): __iter__,track_slice,,us,15.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(894): __iter__,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(974): update,track_slice,,us,147.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(974): update,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(117): __instancecheck__,track_slice,,us,19.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,(117): __instancecheck__,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,asyncio/futures.py(396): _call_set_state,track_slice,,us,56.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,asyncio/futures.py(396): _call_set_state,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,collections/__init__.py(1120): __init__,track_slice,,us,68.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,collections/__init__.py(1120): __init__,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,collections/__init__.py(1137): __setitem__,track_slice,,us,18.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,collections/__init__.py(1137): __setitem__,track_slice,,calls,256,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,collections/__init__.py(1143): __iter__,track_slice,,us,14.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,collections/__init__.py(1143): __iter__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/_base.py(337): _invoke_callbacks,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/_base.py(337): _invoke_callbacks,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/_base.py(497): set_running_or_notify_cancel,track_slice,,us,15.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/_base.py(497): set_running_or_notify_cancel,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/_base.py(537): set_result,track_slice,,us,16.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/_base.py(537): set_result,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/thread.py(54): run,track_slice,,us,1727.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/thread.py(54): run,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/thread.py(90): _worker,track_slice,,us,59184.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,concurrent/futures/thread.py(90): _worker,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,contextlib.py(104): __init__,track_slice,,us,67.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,contextlib.py(104): __init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,contextlib.py(132): __enter__,track_slice,,us,35.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,contextlib.py(132): __enter__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,contextlib.py(141): __exit__,track_slice,,us,45.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,contextlib.py(141): __exit__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,contextlib.py(299): helper,track_slice,,us,41.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,contextlib.py(299): helper,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,enum.py(1291): value,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,enum.py(1291): value,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,enum.py(202): __get__,track_slice,,us,30.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,enum.py(202): __get__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(122): put,track_slice,,us,154.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(122): put,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(154): get,track_slice,,us,120.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(154): get,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(193): get_nowait,track_slice,,us,25.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(193): get_nowait,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(209): _qsize,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(209): _qsize,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(213): _put,track_slice,,us,17.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(213): _put,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(217): _get,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,queue.py(217): _get,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(1012): run,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(299): __enter__,track_slice,,us,41.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(299): __enter__,track_slice,,calls,137,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(302): __exit__,track_slice,,us,32.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(302): __exit__,track_slice,,calls,137,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(314): _is_owned,track_slice,,us,21.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(314): _is_owned,track_slice,,calls,131,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(394): notify,track_slice,,us,43.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(394): notify,track_slice,,calls,134,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(424): notify_all,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(424): notify_all,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(515): release,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,threading.py(515): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(1289): __getattr__,track_slice,,us,272.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(1289): __getattr__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(222): __init__,track_slice,,us,219.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(222): __init__,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(2338): _get_padding_truncation_strategies,track_slice,,us,41.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(2338): _get_padding_truncation_strategies,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(2419): __call__,track_slice,,us,578.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(2419): __call__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(263): __getitem__,track_slice,,us,20.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(263): __getitem__,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(2951): _eventual_warn_about_too_long_sequence,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(2951): _eventual_warn_about_too_long_sequence,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(312): encodings,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(312): encodings,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(674): convert_to_tensors,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_base.py(674): convert_to_tensors,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_tokenizers.py(670): _convert_encoding,track_slice,,us,8025.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_tokenizers.py(670): _convert_encoding,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_tokenizers.py(782): set_truncation_and_padding,track_slice,,us,232.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_tokenizers.py(782): set_truncation_and_padding,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_tokenizers.py(857): _encode_plus,track_slice,,us,1150.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_tokenizers.py(857): _encode_plus,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_tokenizers.py(881): _is_valid_text_input,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,transformers/tokenization_utils_tokenizers.py(881): _is_valid_text_input,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,vllm/tokenizers/hf.py(48): _borrow_from_pool,track_slice,,us,21.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,vllm/tokenizers/hf.py(48): _borrow_from_pool,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,vllm/tokenizers/hf.py(52): _borrow_from_pool,track_slice,,us,40.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,vllm/tokenizers/hf.py(52): _borrow_from_pool,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,vllm/tokenizers/hf.py(92): __call__,track_slice,,us,177.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,vllm/tokenizers/hf.py(92): __call__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,vllm/utils/async_utils.py(128): ,track_slice,,us,137.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,python_function,vllm/utils/async_utils.py(128): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,15.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,27149077.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,asyncio/futures.py(396): _call_set_state,track_slice,,us,15.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,asyncio/futures.py(396): _call_set_state,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/_base.py(337): _invoke_callbacks,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/_base.py(337): _invoke_callbacks,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/_base.py(497): set_running_or_notify_cancel,track_slice,,us,8.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/_base.py(497): set_running_or_notify_cancel,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/_base.py(537): set_result,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/_base.py(537): set_result,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/thread.py(54): run,track_slice,,us,12.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/thread.py(54): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/thread.py(59): run,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/thread.py(59): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/thread.py(93): _worker,track_slice,,us,19.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,concurrent/futures/thread.py(93): _worker,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,enum.py(1266): __hash__,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,enum.py(1266): __hash__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(1012): run,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(299): __enter__,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(302): __exit__,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(314): _is_owned,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(394): notify,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(394): notify,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(424): notify_all,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(424): notify_all,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(515): release,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,threading.py(515): release,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,80.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,15.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,20.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,98590,98600,Trace,PyTorch Profiler (0),track_slice,,us,27149449.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,98590,98600,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,98590,98600,,PyTorch Profiler,track,,us,27149449.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,156,,thread 156 (vllm),track,,us,27149323.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1621,,thread 1621 (vllm),track,,us,27149375.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1314,,thread 1314 (vllm),track,,us,27149333.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,156,1313,,thread 1313 (vllm),track,,us,27149329.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782866177686416752.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,45940.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,9443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8716.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,us,231.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,calls,15,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,us,37.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,50.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,50.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,57.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,us,613.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,35126.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1003,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,us,2559.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,us,27889.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,us,11959.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,us,17961.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,us,11902.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,6571.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,calls,1029,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,48.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,99.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,51172.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,96.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,771.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1583.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,29622.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12943.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,25245.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,34019.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3248519.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1438,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1258.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,944888.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81594,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1150.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,782.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1264.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1075825.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81591,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1615059.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81588,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,601167.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81594,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2063.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1516.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,419.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10813.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,_fwd_kernel,track_slice,,us,2882167.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,_fwd_kernel,track_slice,,calls,478,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,_topk_topp_kernel,track_slice,,us,235087.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,_topk_topp_kernel,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,us,78.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,us,72132.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_2,track_slice,,us,6688.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_3,track_slice,,us,5308.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_4,track_slice,,us,509565.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_4,track_slice,,calls,82469,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_5,track_slice,,us,415871.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_5,track_slice,,calls,82473,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,662091.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,83516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,452554.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,83516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8223.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,780732.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,1135426.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,82467,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,8050.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,10402.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61101.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,us,16991.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,103.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4205.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,10922.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,15271.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,104.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,14944.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,93.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5217.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1048,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,us,42308.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,us,289.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,3726.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,78.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,193.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,148.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,14.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,us,84.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,us,14131.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,us,83.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5308.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5314.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,10849.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2068,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9862.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,5451.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2485793.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,83488,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,473875.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4475078.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,963,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,us,76.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,us,53.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,us,53.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,us,772.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,calls,112,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,us,55.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,us,38.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,169.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,us,98.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,80.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,83.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,29802.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,2415,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,3713015.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,164656,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,554592.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,36881.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,4800,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,862.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,47.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,4830.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,## Call CompiledFxGraph fi7lhj24en57lb3xsg5p3sq63iosmgnuayfd2jl4gz6otxlf7edb ##,track_slice,,us,442.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,## Call CompiledFxGraph fi7lhj24en57lb3xsg5p3sq63iosmgnuayfd2jl4gz6otxlf7edb ##,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,## Call CompiledFxGraph flt46cxyuwv7sszz7ubg3zhfpfbaahwb3g4px3yhs64rthpccetg ##,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,## Call CompiledFxGraph flt46cxyuwv7sszz7ubg3zhfpfbaahwb3g4px3yhs64rthpccetg ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,## Call CompiledFxGraph fylyhjgjub2nspsg5bu3l2xhmd6n2nafi7kzgeja5jf3xicjnsdx ##,track_slice,,us,21.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,## Call CompiledFxGraph fylyhjgjub2nspsg5bu3l2xhmd6n2nafi7kzgeja5jf3xicjnsdx ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1961.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1376.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,_rocm_C::paged_attention,track_slice,,us,1387.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,_rocm_C::paged_attention,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,_rocm_C::wvSplitK,track_slice,,us,48.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_local_scalar_dense,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_local_scalar_dense,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_scaled_mm,track_slice,,us,150666.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_scaled_mm,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_softmax,track_slice,,us,3993.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_to_copy,track_slice,,us,6685.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_to_copy,track_slice,,calls,5228,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_unsafe_view,track_slice,,us,515.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::_unsafe_view,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::add,track_slice,,us,8967.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::add,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::alias,track_slice,,us,1023.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::alias,track_slice,,calls,2964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::argmax,track_slice,,us,6522.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::argmax,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::as_strided,track_slice,,us,14219.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::as_strided,track_slice,,calls,61255,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::clone,track_slice,,us,1221.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::clone,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::copy_,track_slice,,us,38049.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::copy_,track_slice,,calls,17780,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::cumsum,track_slice,,us,121.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::cumsum,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::detach,track_slice,,us,1576.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::detach,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::detach_,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::detach_,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::div_,track_slice,,us,7000.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::div_,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::empty,track_slice,,us,9041.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::empty,track_slice,,calls,6501,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::empty_like,track_slice,,us,1889.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::empty_like,track_slice,,calls,2474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::empty_strided,track_slice,,us,12879.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::empty_strided,track_slice,,calls,6674,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::exponential_,track_slice,,us,5030.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::exponential_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::fill_,track_slice,,us,8234.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::fill_,track_slice,,calls,6300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::flatten,track_slice,,us,1132.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::flatten,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::index,track_slice,,us,19018.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::index,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::index_select,track_slice,,us,1703.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::index_select,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::item,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::item,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::le,track_slice,,us,65.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::le,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::lift_fresh,track_slice,,us,324.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::lift_fresh,track_slice,,calls,3157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::linear,track_slice,,us,1669.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::lt,track_slice,,us,2275.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::lt,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::masked_fill_,track_slice,,us,59.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::masked_fill_,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::matmul,track_slice,,us,986.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::mm,track_slice,,us,35903.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::movedim,track_slice,,us,1556.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::movedim,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::permute,track_slice,,us,1026.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::permute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::reshape,track_slice,,us,4547.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::reshape,track_slice,,calls,5241,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::resize_,track_slice,,us,1687.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::resize_,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::resolve_conj,track_slice,,us,198.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::resolve_conj,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::resolve_neg,track_slice,,us,177.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::resolve_neg,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::rsub,track_slice,,us,44.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::rsub,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::scatter_,track_slice,,us,133.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::scatter_,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::select,track_slice,,us,3206.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::select,track_slice,,calls,2980,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::slice,track_slice,,us,32636.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::slice,track_slice,,calls,49001,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::softmax,track_slice,,us,2138.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::sort,track_slice,,us,316.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::sort,track_slice,,calls,34,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::sub,track_slice,,us,5946.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::sub,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::t,track_slice,,us,3563.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::t,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::to,track_slice,,us,3894.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::to,track_slice,,calls,10936,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::transpose,track_slice,,us,2475.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::transpose,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::unsqueeze,track_slice,,us,2343.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::unsqueeze,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::view,track_slice,,us,6008.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::view,track_slice,,calls,11101,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::zero_,track_slice,,us,21.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,aten::zero_,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,c10d::_allgather_base_,track_slice,,us,8376.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,c10d::_allgather_base_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,record_param_comms,track_slice,,us,7940.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,record_param_comms,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_2,track_slice,,us,48.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_2,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_3,track_slice,,us,32.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_4,track_slice,,us,676.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_4,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_5,track_slice,,us,598.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_5,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,668.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,728.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,41.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,750.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,705.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,33.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,14.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::all_gather,track_slice,,us,2179.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::all_reduce,track_slice,,us,887.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,2218.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,4107.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::unified_attention_with_output,track_slice,,us,881.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,582.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipCtxGetCurrent,track_slice,,us,390.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,1013.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,2924,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipDeviceSynchronize,track_slice,,us,37.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipEventDestroy,track_slice,,us,1408.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipEventDestroy,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipEventRecord,track_slice,,us,12550.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipEventRecord,track_slice,,calls,6274,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipEventSynchronize,track_slice,,us,1160.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipEventSynchronize,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipExtLaunchKernel,track_slice,,us,4966.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipExtLaunchKernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,14197.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipFuncGetAttribute,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipFuncGetAttribute,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3348.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,8874,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipGraphLaunch,track_slice,,us,403371.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipGraphLaunch,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipHostMalloc,track_slice,,us,192.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipLaunchKernel,track_slice,,us,73040.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipLaunchKernel,track_slice,,calls,20567,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipMalloc,track_slice,,us,156.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipMalloc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipMemcpyAsync,track_slice,,us,47661.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipMemcpyAsync,track_slice,,calls,11532,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,21766.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipModuleLoadDataEx,track_slice,,us,954.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipModuleLoadDataEx,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipPointerGetAttribute,track_slice,,us,6526.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,28122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,us,423.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipStreamIsCapturing,track_slice,,us,4005.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12559,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipStreamWaitEvent,track_slice,,us,5554.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ot/cot6xm3fe2d4kwt4yicnvlzl2pcghelcppn4uh3emq4f2hf5hlxa.py(799): call,track_slice,,us,241.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ot/cot6xm3fe2d4kwt4yicnvlzl2pcghelcppn4uh3emq4f2hf5hlxa.py(799): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ps/cps3yr23476wwr43uxsnzkyjweqdgrxdb5ugg22vniapf64llooe.py(1174): call,track_slice,,us,34679.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ps/cps3yr23476wwr43uxsnzkyjweqdgrxdb5ugg22vniapf64llooe.py(1174): call,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/yz/cyz5wdxsimd4y6wqv2i73af6mjoq57juo5if67v7l345esoyv7om.py(814): call,track_slice,,us,200.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/yz/cyz5wdxsimd4y6wqv2i73af6mjoq57juo5if67v7l345esoyv7om.py(814): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,522.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,153.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1120.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,552.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1499.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1027.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,156.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,255.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1289.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2902.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,156.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,74.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,242.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,8827.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,862.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1304.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2152,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1247.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4964.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,269.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,45.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,973.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,115.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4018.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,23295,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1808.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3741.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,46960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1163.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,15069,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,30.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,126,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,85.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,8.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,6369.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,92799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,88.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,13156.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,14299.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,364397,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1663.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,32736.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,6779.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,65952,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,934.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3109,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,406564.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,9175540,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,14580.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,33848,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,7882.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,18827,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,59.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1574232.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,9171353,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,7.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,96,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,35.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3779.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1140.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3551.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1286.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,489.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,384477.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,9175541,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,405.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3026.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,208.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,145.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3874.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,9898,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1504.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2585.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1702.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,4098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,9839.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2023.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,25.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1932.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3593.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,24.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,7326.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,133508,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1440.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,132.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3007.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,66122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,699.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,225.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,206.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,8898.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,8375,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4914.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,33.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4499.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,24276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,450.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,735.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,5136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,40.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,577,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2342.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,221.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1926,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,11097.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3528,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1286.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1446,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,641.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1464.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,14319.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,200583,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1583.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2089,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,5589.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,5220,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1773.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3686.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,24667.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,378492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,23.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2006.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,495.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,213.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,19026.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,66516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,759.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,7943,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1865.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3959,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,256.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1045.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,278.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,36.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1669.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1391.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1646.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1632.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,625.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2010,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,228.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,6284.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1249.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,51.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1370.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,39.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1889.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3138.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,10479.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2100,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4745.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4305.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,5428.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3149,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,840.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4108.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,42.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,40.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,624.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1603.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,3144,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1748.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,38.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,312.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,110.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,561,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,3479.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,16058,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2034.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,69.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,12169.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,5691,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,305.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1128.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1045.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2799.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,2797.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,825.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,507.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,5114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,4457.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,5844,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,1235.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,39.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,us,23.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(804): get,track_slice,,us,749.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(804): get,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(117): __instancecheck__,track_slice,,us,240.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(117): __instancecheck__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(260): __init__,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(260): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(309): __init__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(309): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(319): decode,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(319): decode,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(16): exists,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(16): exists,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(39): isdir,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(39): isdir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(1390): _handle_fromlist,track_slice,,us,21.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(1390): _handle_fromlist,track_slice,,calls,49,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(645): parent,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(645): parent,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(200): makedirs,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(200): makedirs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(709): __getitem__,track_slice,,us,2124.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(709): __getitem__,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(791): encode,track_slice,,us,1014.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(791): encode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(795): decode,track_slice,,us,468.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(795): decode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(808): getenv,track_slice,,us,697.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(808): getenv,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(100): split,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(100): split,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(138): splitroot,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(138): splitroot,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(41): _get_sep,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(41): _get_sep,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(71): join,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(71): join,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(0): ,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(0): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(1): ,track_slice,,us,434.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(1): ,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(1): ,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(1): launcher,track_slice,,us,1191.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(1): launcher,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,13.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): __eq__,track_slice,,us,1019.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): __eq__,track_slice,,calls,3114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): __hash__,track_slice,,us,1783.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): __hash__,track_slice,,calls,4158,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): __init__,track_slice,,us,4083.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): __init__,track_slice,,calls,7403,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): __repr__,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): dynamic_func,track_slice,,us,22341.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(2): dynamic_func,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,12.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,12.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,40.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(404): execution_fn,track_slice,,us,7726.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(404): execution_fn,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,17.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,base64.py(166): _b32encode,track_slice,,us,19.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,base64.py(166): _b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,base64.py(249): b32encode,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,base64.py(249): b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,collections/__init__.py(355): namedtuple,track_slice,,us,99.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,collections/__init__.py(355): namedtuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,collections/__init__.py(429): ,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,collections/__init__.py(429): ,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(104): __init__,track_slice,,us,5939.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(104): __init__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(132): __enter__,track_slice,,us,3201.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(132): __enter__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(141): __exit__,track_slice,,us,2812.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(141): __exit__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(299): helper,track_slice,,us,3798.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(299): helper,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(772): __init__,track_slice,,us,580.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(772): __init__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(775): __enter__,track_slice,,us,590.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(775): __enter__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(778): __exit__,track_slice,,us,427.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,contextlib.py(778): __exit__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,copy.py(247): _reconstruct,track_slice,,us,1755.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,copy.py(247): _reconstruct,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,copy.py(61): copy,track_slice,,us,3555.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,copy.py(61): copy,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,copyreg.py(98): __newobj__,track_slice,,us,481.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,dataclasses.py(255): wrapper,track_slice,,us,12.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,dataclasses.py(255): wrapper,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(1128): __new__,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(1128): __new__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(1266): __hash__,track_slice,,us,1127.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(1266): __hash__,track_slice,,calls,10423,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(1291): value,track_slice,,us,327.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(1291): value,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(202): __get__,track_slice,,us,1605.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(202): __get__,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(720): __call__,track_slice,,us,20.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,enum.py(720): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,functools.py(982): __get__,track_slice,,us,1150.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,functools.py(982): __get__,track_slice,,calls,1108,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/__init__.py(183): dumps,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/__init__.py(183): dumps,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/__init__.py(274): load,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/__init__.py(274): load,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/__init__.py(299): loads,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/__init__.py(299): loads,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/decoder.py(333): decode,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/decoder.py(333): decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/decoder.py(344): raw_decode,track_slice,,us,15.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/encoder.py(105): __init__,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/encoder.py(183): encode,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/encoder.py(183): encode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/encoder.py(205): iterencode,track_slice,,us,43.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,json/encoder.py(205): iterencode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,logging/__init__.py(1517): debug,track_slice,,us,564.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,274.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,683.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,21.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1478.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,nn.Module: Sampler_0,track_slice,,us,1412.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,nn.Module: Sampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,990.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,570.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,81.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,409.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,76.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,595.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,149.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,967.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1811.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4176,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,103.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2895.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1005): open,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1005): open,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1015): read_bytes,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1015): read_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1022): read_text,track_slice,,us,7.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1022): read_text,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1157): __init__,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1157): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1164): __new__,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(1164): __new__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(358): __init__,track_slice,,us,14.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(358): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(380): with_segments,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(380): with_segments,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(387): _parse_path,track_slice,,us,38.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(387): _parse_path,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(407): _load_parts,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(407): _load_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(437): __str__,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(437): __str__,track_slice,,calls,11,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(447): __fspath__,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(447): __fspath__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(551): drive,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(551): drive,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(560): root,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(560): root,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(569): _tail,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(569): _tail,track_slice,,calls,25,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(583): name,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(583): name,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(591): suffix,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(591): suffix,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(711): joinpath,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(711): joinpath,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(719): __truediv__,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(719): __truediv__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(731): parent,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,pathlib.py(731): parent,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,queue.py(122): put,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,queue.py(213): _put,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(1012): run,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(299): __enter__,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(302): __exit__,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(314): _is_owned,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(394): notify,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_compile.py(42): inner,track_slice,,us,31.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_compile.py(42): inner,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,236.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,84.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,70.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,119.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,28.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,538.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,204.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,991.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,97.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4577.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,28.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,274.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,925.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,139.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1657.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,38.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,3206.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,2694.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,748.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,306.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,3858,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,11792.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,199.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,350.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,376.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,622.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,3114.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,538.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,15110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1079): __call__,track_slice,,us,616.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,1005.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,825.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1145): ,track_slice,,us,557.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1145): ,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1257): __call__,track_slice,,us,1847.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,6037,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(864): __call__,track_slice,,us,581.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_ops.py(864): __call__,track_slice,,calls,2886,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,us,13.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,571.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_tensor.py(40): wrapped,track_slice,,us,23.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_tensor.py(40): wrapped,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,704.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,1683.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,786.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(823): ,track_slice,,us,513.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(823): ,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,2985.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3690.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2512.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7228.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1408.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,3022.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,152.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,13.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1194.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1402.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3252.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,185.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,590.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2161.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,3034.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,857.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,6266,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,867.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,1526.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1099.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1353.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,48.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,1146.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,144.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,268.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1295.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1510.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,738.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,397.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,498.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,1160.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,4043.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,3619,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,836.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,481.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(199): record,track_slice,,us,501.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,281.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,2801.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,319.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1280.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,987.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,us,1541.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,299.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,1060,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,us,391.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,19.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,us,6385.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,us,94.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,65.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5714.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2675.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,6102,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,18.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,22.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/storage.py(74): size,track_slice,,us,1693.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/storage.py(74): size,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,684.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,52.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,183.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,18374.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,163.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/__init__.py(67): cdiv,track_slice,,us,81.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,271.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(15): ,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(15): ,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(26): is_iterable,track_slice,,us,28.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(26): is_iterable,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(42): find_paths_if,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(42): find_paths_if,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(46): _impl,track_slice,,us,24.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/_utils.py(46): _impl,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,us,71.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,us,14725.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,us,11576.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,us,21.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(319): ,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(319): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,us,5768.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,us,199.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,us,117.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/compiler.py(26): __init__,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/compiler.py(26): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,4257.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,calls,26,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(21): ,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(21): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(90): visit,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/driver.py(90): visit,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(226): compile,track_slice,,us,24.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(226): compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,253.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,us,41.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(411): ,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(411): ,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,us,327.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(485): run,track_slice,,us,142.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(485): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,us,3627.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(71): hash,track_slice,,us,17.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(71): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(73): ,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(73): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(107): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(107): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(117): get,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(117): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(130): get,track_slice,,us,1513.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(130): get,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(160): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(160): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(223): get,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(223): get,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(347): ,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(347): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,us,124.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(422): __call__,track_slice,,us,1777.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(422): __call__,track_slice,,calls,5104,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(75): __get__,track_slice,,us,5032.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/knobs.py(75): __get__,track_slice,,calls,15629,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,us,905.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,597.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/_allocation.py(46): get,track_slice,,us,863.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/_allocation.py(46): get,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,us,867.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(249): _base32,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(249): _base32,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(38): __init__,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(38): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(62): has_file,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(62): has_file,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(73): get_group,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/cache.py(73): get_group,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/driver.py(36): active,track_slice,,us,528.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,7659,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,us,1781.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,calls,1440,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,us,498.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(373): ,track_slice,,us,7765.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(373): ,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,us,4689.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,us,27.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(603): ,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(603): ,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,us,15.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,us,30.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(714): ,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(714): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(718): ,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(718): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(723): run,track_slice,,us,32774.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(723): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,us,15.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1174): __init__,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1215): __setattr__,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1269): __init__,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1273): ,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(166): _type_convert,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(175): _type_check,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(2187): cast,track_slice,,us,2054.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(2187): cast,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(2344): get_origin,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(2344): get_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(317): _deduplicate,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(392): inner,track_slice,,us,781.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(392): inner,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(494): __repr__,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(515): __getitem__,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(694): Union,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(730): ,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(747): Optional,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(892): __init__,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(962): __eq__,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(971): __hash__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1352.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,us,42.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,us,91.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,us,518.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1631.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,470.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,17.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,349.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,572.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,132.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,298.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,429.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6532.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1530,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,73.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,34.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,16.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,781.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,805.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,837.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1050,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,15.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,1019.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2515.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,690.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,140.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,251.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,94.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,539.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,1184.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,us,8618.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,us,824.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,314.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1703.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,628.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,232.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,442.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2106873.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,9171358,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1678.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,550.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2418.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,470.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,921.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,326266.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,9171358,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,282151.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,9171358,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,8032459.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1383703.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,9173449,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1383374.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,9175540,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5358.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9372.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,106.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,285.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2572,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,558.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,us,74.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,us,397.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,calls,5222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,833.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,205.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,334.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,459.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,458.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,us,261.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,us,2697.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,us,519.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,750715.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,9171353,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,199.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,317.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,144.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2496,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,113.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2018.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,208.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,193.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,3959.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,725.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/logger.py(136): warning_once,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/logger.py(136): warning_once,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1134.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1140.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,1041.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,482.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,290.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,1024.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,555.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,5392.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,690.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12945.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1488.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,502.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2349.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,3941.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,31.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2813.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,74.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,38.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,63.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,777.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4622,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,us,310.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,102.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,55.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,75.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,161.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,575.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,60.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,799.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,804.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,140.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,481.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(579): ,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(584): ,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,18.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1258.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,100.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,14.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,143.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2739.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4813.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1301.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1252.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,5324.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2644.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,245.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,15502.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,225.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3243.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7358.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2683.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5617.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,8163.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,123.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,439.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,43.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,688.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,96.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,132.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,103.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,23.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,440.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,360.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,363.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,283.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,us,2485.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,us,1966.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,us,217.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,us,921.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,us,1173.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,us,1434.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,us,12514.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,875.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3206.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2347.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,67.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,5763.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,11059.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6270,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,149.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,22,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3041.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9398,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14490.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3749.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,57.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,24.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3269.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,479.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,837.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1533.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,24.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,15.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,8.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,522.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,385.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,165.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,33.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,95.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,190.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,125.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,722.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,6.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,22.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,48,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16228.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,53.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9552.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,22545.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,371.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,19.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,762.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6422.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65602,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2672.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,281.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1656.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,349.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,102.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,243539.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,113.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,5936.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11178.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,177146.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,193.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,119944.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,24760.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2143.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6654.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4936.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,219.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,631.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3969.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2233.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,151064.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,407.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,377.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1135.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,199.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3343.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,878.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5888.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,3039.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,65916.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2226.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,454.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,523.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,30871.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,173.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2711.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,557.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7559.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,714.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,54.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,325.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,203.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,93.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,891.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7478832.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,user_annotation,nccl:_all_gather_base,track_slice,,us,35079.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,user_annotation,nccl:_all_gather_base,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,883,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,us,840.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,883,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,calls,3122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,26220336.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(120): update,track_slice,,us,15.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(21): __enter__,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(27): __exit__,track_slice,,us,16.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(37): __init__,track_slice,,us,22.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,21.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(63): __iter__,track_slice,,us,38.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(95): copy,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(299): __enter__,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(302): __exit__,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(308): _release_save,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(311): _acquire_restore,track_slice,,us,43.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(314): _is_owned,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(323): wait,track_slice,,us,44.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(359): wait,track_slice,,us,930654.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(601): is_set,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(637): wait,track_slice,,us,19.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(655): wait,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,18.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/_monitor.py(69): run,track_slice,,us,64.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(100): acquire,track_slice,,us,24.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(104): release,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(108): __enter__,track_slice,,us,6.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(759): get_lock,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,27.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,17.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,27149938.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,(117): __instancecheck__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,contextlib.py(104): __init__,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,contextlib.py(132): __enter__,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,contextlib.py(141): __exit__,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,contextlib.py(299): helper,track_slice,,us,6.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,queue.py(154): get,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,queue.py(171): get,track_slice,,us,20.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,queue.py(209): _qsize,track_slice,,us,8.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,queue.py(217): _get,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(299): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(302): __exit__,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(308): _release_save,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(311): _acquire_restore,track_slice,,us,52.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(314): _is_owned,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(323): wait,track_slice,,us,13.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(355): wait,track_slice,,us,598.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(394): notify,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,13.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,55.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,16.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,560.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,25439011.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(120): update,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(21): __enter__,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(27): __exit__,track_slice,,us,14.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(37): __init__,track_slice,,us,18.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,14.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(63): __iter__,track_slice,,us,31.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(95): copy,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(299): __enter__,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(302): __exit__,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(308): _release_save,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(311): _acquire_restore,track_slice,,us,70.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(314): _is_owned,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(323): wait,track_slice,,us,33.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(359): wait,track_slice,,us,1712078.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(601): is_set,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(637): wait,track_slice,,us,12.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(655): wait,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,16.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/_monitor.py(69): run,track_slice,,us,50.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(100): acquire,track_slice,,us,12.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(104): release,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(108): __enter__,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(111): __exit__,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(759): get_lock,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,148743,148753,Trace,PyTorch Profiler (0),track_slice,,us,27151540.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,148743,148753,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,148743,148753,,PyTorch Profiler,track,,us,27151540.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,750,,thread 750 (VLLM::Worker_TP),track,,us,27151450.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1240,,thread 1240 (VLLM::Worker_TP),track,,us,27151484.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1169,,thread 1169 (VLLM::Worker_TP),track,,us,27151444.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,1158,,thread 1158 (VLLM::Worker_TP),track,,us,27151440.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,4,,stream 4 ,track,,us,27022346.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,5,9,,stream 9 ,track,,us,26833992.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +3,750,883,,,track,,us,27130067.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank3.1782866358523014814.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,49676.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,9443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,9106.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,us,247.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,calls,15,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,us,41.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,52.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,52.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,81.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,us,600.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,36311.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1003,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,us,2713.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,us,33890.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,us,14665.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,us,17942.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,us,7160.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,1082.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,calls,1029,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,46.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,123.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,52125.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,99.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,787.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1576.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,29836.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,13366.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,25406.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,34357.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3190141.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1437,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1230.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,973947.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81588,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1147.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,800.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1270.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1116928.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81589,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1639473.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81578,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,618827.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81593,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2036.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1523.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,431.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10908.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,_fwd_kernel,track_slice,,us,2876797.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,_fwd_kernel,track_slice,,calls,479,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,_topk_topp_kernel,track_slice,,us,235018.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,_topk_topp_kernel,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,us,88.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,us,70121.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_2,track_slice,,us,6829.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_3,track_slice,,us,5705.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_4,track_slice,,us,581001.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_4,track_slice,,calls,82470,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_5,track_slice,,us,495038.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_5,track_slice,,calls,82471,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,719909.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,83511,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,526452.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,83509,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8746.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,827767.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,1157478.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,82466,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,8204.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,10472.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61456.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,us,16851.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,118.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4550.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,11997.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,15299.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,121.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15404.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,93.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5512.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1048,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,us,42476.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,us,283.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,3975.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,85.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,198.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,164.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,14.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,us,95.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,us,14534.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,us,92.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5651.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5685.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,11424.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2068,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9539.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,6273.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2493432.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,83492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,515644.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,83516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4556703.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,us,90.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,us,54.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,us,51.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,us,788.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,calls,112,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,us,53.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,us,38.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,168.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,us,101.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,92.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,89.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,24310.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,2415,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,3158004.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,164664,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,572224.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,83516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,38103.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,4799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,878.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,51.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,5006.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,## Call CompiledFxGraph fqcex6vg52glyzxjkrowe3atnweos4mfzgmarpb2apxhuklpwgg2 ##,track_slice,,us,426.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,## Call CompiledFxGraph fqcex6vg52glyzxjkrowe3atnweos4mfzgmarpb2apxhuklpwgg2 ##,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,## Call CompiledFxGraph ftcybcydbrhbt5tyhckchbj7fqpck25eev3jfmgvpb65ilsyq54m ##,track_slice,,us,24.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,## Call CompiledFxGraph ftcybcydbrhbt5tyhckchbj7fqpck25eev3jfmgvpb65ilsyq54m ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,## Call CompiledFxGraph fuxkwrikqgzq7762ivmzgqmstchvgz4dm34cybjrsqaj3w452vev ##,track_slice,,us,7.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,## Call CompiledFxGraph fuxkwrikqgzq7762ivmzgqmstchvgz4dm34cybjrsqaj3w452vev ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,2045.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1399.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,_rocm_C::paged_attention,track_slice,,us,1435.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,_rocm_C::paged_attention,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,_rocm_C::wvSplitK,track_slice,,us,53.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_local_scalar_dense,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_local_scalar_dense,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_scaled_mm,track_slice,,us,157321.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_scaled_mm,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_softmax,track_slice,,us,4164.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_to_copy,track_slice,,us,6716.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_to_copy,track_slice,,calls,5228,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_unsafe_view,track_slice,,us,553.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::_unsafe_view,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::add,track_slice,,us,9326.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::add,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::alias,track_slice,,us,1061.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::alias,track_slice,,calls,2964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::argmax,track_slice,,us,6735.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::argmax,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::as_strided,track_slice,,us,14563.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::as_strided,track_slice,,calls,61255,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::clone,track_slice,,us,1396.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::clone,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::copy_,track_slice,,us,39533.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::copy_,track_slice,,calls,17780,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::cumsum,track_slice,,us,130.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::cumsum,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::detach,track_slice,,us,1593.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::detach,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::detach_,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::detach_,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::div_,track_slice,,us,7106.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::div_,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::empty,track_slice,,us,9560.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::empty,track_slice,,calls,6501,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::empty_like,track_slice,,us,1882.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::empty_like,track_slice,,calls,2474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::empty_strided,track_slice,,us,13673.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::empty_strided,track_slice,,calls,6674,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::exponential_,track_slice,,us,5379.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::exponential_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::fill_,track_slice,,us,8525.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::fill_,track_slice,,calls,6300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::flatten,track_slice,,us,1070.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::flatten,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::index,track_slice,,us,19596.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::index,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::index_select,track_slice,,us,1782.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::index_select,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::item,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::item,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::le,track_slice,,us,73.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::le,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::lift_fresh,track_slice,,us,309.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::lift_fresh,track_slice,,calls,3157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::linear,track_slice,,us,1787.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::lt,track_slice,,us,2460.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::lt,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::masked_fill_,track_slice,,us,62.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::masked_fill_,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::matmul,track_slice,,us,988.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::mm,track_slice,,us,37616.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::movedim,track_slice,,us,1683.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::movedim,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::permute,track_slice,,us,1116.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::permute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::reshape,track_slice,,us,4759.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::reshape,track_slice,,calls,5241,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::resize_,track_slice,,us,1724.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::resize_,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::resolve_conj,track_slice,,us,189.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::resolve_conj,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::resolve_neg,track_slice,,us,132.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::resolve_neg,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::rsub,track_slice,,us,47.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::rsub,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::scatter_,track_slice,,us,135.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::scatter_,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::select,track_slice,,us,3217.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::select,track_slice,,calls,2980,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::slice,track_slice,,us,31919.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::slice,track_slice,,calls,49001,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::softmax,track_slice,,us,2133.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::sort,track_slice,,us,339.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::sort,track_slice,,calls,34,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::sub,track_slice,,us,6184.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::sub,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::t,track_slice,,us,3696.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::t,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::to,track_slice,,us,4042.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::to,track_slice,,calls,10936,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::transpose,track_slice,,us,2463.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::transpose,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::unsqueeze,track_slice,,us,2243.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::unsqueeze,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::view,track_slice,,us,6258.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::view,track_slice,,calls,11101,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::zero_,track_slice,,us,25.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,aten::zero_,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,c10d::_allgather_base_,track_slice,,us,8958.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,c10d::_allgather_base_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,record_param_comms,track_slice,,us,8532.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,record_param_comms,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_2,track_slice,,us,41.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_2,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_3,track_slice,,us,33.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_4,track_slice,,us,700.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_4,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_5,track_slice,,us,610.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_5,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,707.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,756.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,51.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,783.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,714.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,39.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,13.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::all_gather,track_slice,,us,2388.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::all_reduce,track_slice,,us,926.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,2247.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,4220.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::unified_attention_with_output,track_slice,,us,890.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,594.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipCtxGetCurrent,track_slice,,us,399.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,946.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,2924,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipDeviceSynchronize,track_slice,,us,63.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipEventDestroy,track_slice,,us,1516.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipEventDestroy,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipEventRecord,track_slice,,us,15914.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipEventRecord,track_slice,,calls,6274,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipEventSynchronize,track_slice,,us,1347.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipEventSynchronize,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipExtLaunchKernel,track_slice,,us,6437.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipExtLaunchKernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,16004.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipFuncGetAttribute,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipFuncGetAttribute,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3406.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,8874,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipGraphLaunch,track_slice,,us,663370.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipGraphLaunch,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipHostMalloc,track_slice,,us,249.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipLaunchKernel,track_slice,,us,83396.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipLaunchKernel,track_slice,,calls,20567,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipMalloc,track_slice,,us,177.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipMalloc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipMemcpyAsync,track_slice,,us,55113.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipMemcpyAsync,track_slice,,calls,11532,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,23556.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipModuleLoadDataEx,track_slice,,us,1222.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipModuleLoadDataEx,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipPointerGetAttribute,track_slice,,us,6621.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,28122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,us,400.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipStreamIsCapturing,track_slice,,us,4053.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12559,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipStreamWaitEvent,track_slice,,us,6498.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ej/cejo4utcoy4ydqromit46ruronwwlqazysw24pewmt6io4le4z3e.py(1174): call,track_slice,,us,39146.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/ej/cejo4utcoy4ydqromit46ruronwwlqazysw24pewmt6io4le4z3e.py(1174): call,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/nr/cnrrp7ljfivdmlxjwdl4rgrilvbze3uvlobwi2yntpciccke2gmo.py(799): call,track_slice,,us,262.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/nr/cnrrp7ljfivdmlxjwdl4rgrilvbze3uvlobwi2yntpciccke2gmo.py(799): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/vt/cvtleqdh3q4sbrgzafj75auzk624rlnmmsvieljmge5rnqzqucyf.py(814): call,track_slice,,us,244.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/vt/cvtleqdh3q4sbrgzafj75auzk624rlnmmsvieljmge5rnqzqucyf.py(814): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,610.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,158.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1147.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,573.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1488.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,986.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,169.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,235.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1325.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2977.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,169.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,61.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,245.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,8646.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,874.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1303.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2152,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1223.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,5202.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,284.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,38.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1011.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,119.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,4367.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,23295,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1940.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,4363.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,46960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1187.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,15069,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,44.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,126,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,81.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,6432.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,92799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,98.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,13059.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,15141.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,364397,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1750.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,36945.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,6796.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,65952,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,944.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3109,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,395979.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,8917088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,14673.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,33848,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,8129.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,18827,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,74.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,15.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1527289.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,8912901,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,8.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,96,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,44.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3939.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1112.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3743.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1377.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,477.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,376554.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,8917089,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,395.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3244.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,213.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,163.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3992.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,9898,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1634.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3182.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1738.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,4098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,11226.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1992.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,22.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2004.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3803.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,28.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,7362.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,133508,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1546.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,144.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3177.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,66122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,770.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,242.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,226.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,9244.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,8375,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,5137.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,33.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,5627.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,24276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,437.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,732.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,5136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,40.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,577,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2509.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,258.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1926,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,11883.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3528,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1183.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1446,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,667.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1514.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,14859.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,200583,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1674.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2089,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,6011.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,5220,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1852.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3865.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,25959.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,378492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,36.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2158.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,476.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,239.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,18836.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,66516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,758.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,7943,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1934.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3959,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,302.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1053.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,295.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,42.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1701.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1523.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1697.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1711.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,631.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2010,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,229.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,6494.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1231.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,62.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1388.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,28.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1985.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3136.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,11203.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2100,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,4785.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,4584.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,6208.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3149,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,970.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,4164.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,41.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,46.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,659.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1720.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,3144,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1891.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,43.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,329.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,121.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,561,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3551.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,16058,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2333.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,74.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,13035.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,5691,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,319.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1195.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1065.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,2959.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,3307.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,872.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,530.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,5114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,4482.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,5844,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,1407.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,49.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,us,24.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(804): get,track_slice,,us,750.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(804): get,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(117): __instancecheck__,track_slice,,us,275.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(117): __instancecheck__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(260): __init__,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(260): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(309): __init__,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(309): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(319): decode,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(319): decode,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(16): exists,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(16): exists,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(39): isdir,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(39): isdir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(1390): _handle_fromlist,track_slice,,us,24.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(1390): _handle_fromlist,track_slice,,calls,49,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(645): parent,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(645): parent,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(200): makedirs,track_slice,,us,15.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(200): makedirs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(709): __getitem__,track_slice,,us,2288.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(709): __getitem__,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(791): encode,track_slice,,us,978.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(791): encode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(795): decode,track_slice,,us,446.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(795): decode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(808): getenv,track_slice,,us,772.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(808): getenv,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(100): split,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(100): split,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(138): splitroot,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(138): splitroot,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(41): _get_sep,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(41): _get_sep,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(71): join,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(71): join,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(0): ,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(0): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(1): ,track_slice,,us,495.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(1): ,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(1): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(1): launcher,track_slice,,us,1153.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(1): launcher,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,13.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): __eq__,track_slice,,us,1062.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): __eq__,track_slice,,calls,3114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): __hash__,track_slice,,us,1951.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): __hash__,track_slice,,calls,4158,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): __init__,track_slice,,us,4423.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): __init__,track_slice,,calls,7403,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): __repr__,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): dynamic_func,track_slice,,us,22107.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(2): dynamic_func,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,12.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,38.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(404): execution_fn,track_slice,,us,7902.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(404): execution_fn,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,17.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,base64.py(166): _b32encode,track_slice,,us,24.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,base64.py(166): _b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,base64.py(249): b32encode,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,base64.py(249): b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,collections/__init__.py(355): namedtuple,track_slice,,us,113.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,collections/__init__.py(355): namedtuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,collections/__init__.py(429): ,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,collections/__init__.py(429): ,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(104): __init__,track_slice,,us,6534.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(104): __init__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(132): __enter__,track_slice,,us,3379.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(132): __enter__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(141): __exit__,track_slice,,us,2962.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(141): __exit__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(299): helper,track_slice,,us,4032.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(299): helper,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(772): __init__,track_slice,,us,612.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(772): __init__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(775): __enter__,track_slice,,us,613.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(775): __enter__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(778): __exit__,track_slice,,us,494.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,contextlib.py(778): __exit__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,copy.py(247): _reconstruct,track_slice,,us,1779.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,copy.py(247): _reconstruct,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,copy.py(61): copy,track_slice,,us,3630.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,copy.py(61): copy,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,copyreg.py(98): __newobj__,track_slice,,us,480.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,dataclasses.py(255): wrapper,track_slice,,us,14.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,dataclasses.py(255): wrapper,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(1128): __new__,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(1128): __new__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(1266): __hash__,track_slice,,us,1159.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(1266): __hash__,track_slice,,calls,10423,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(1291): value,track_slice,,us,347.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(1291): value,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(202): __get__,track_slice,,us,1675.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(202): __get__,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(720): __call__,track_slice,,us,36.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,enum.py(720): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,functools.py(982): __get__,track_slice,,us,1294.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,functools.py(982): __get__,track_slice,,calls,1108,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/__init__.py(183): dumps,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/__init__.py(183): dumps,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/__init__.py(274): load,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/__init__.py(274): load,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/__init__.py(299): loads,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/__init__.py(299): loads,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/decoder.py(333): decode,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/decoder.py(333): decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/decoder.py(344): raw_decode,track_slice,,us,14.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/encoder.py(105): __init__,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/encoder.py(183): encode,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/encoder.py(183): encode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/encoder.py(205): iterencode,track_slice,,us,44.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,json/encoder.py(205): iterencode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,logging/__init__.py(1517): debug,track_slice,,us,600.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,306.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,775.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,26.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1389.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,nn.Module: Sampler_0,track_slice,,us,1615.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,nn.Module: Sampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1102.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,619.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,82.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,471.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,97.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,578.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,153.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,988.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1917.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4176,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,95.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,3094.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1005): open,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1005): open,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1015): read_bytes,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1015): read_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1022): read_text,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1022): read_text,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1157): __init__,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1157): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1164): __new__,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(1164): __new__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(358): __init__,track_slice,,us,15.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(358): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(380): with_segments,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(380): with_segments,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(387): _parse_path,track_slice,,us,41.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(387): _parse_path,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(407): _load_parts,track_slice,,us,15.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(407): _load_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(437): __str__,track_slice,,us,12.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(437): __str__,track_slice,,calls,11,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(447): __fspath__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(447): __fspath__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(551): drive,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(551): drive,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(560): root,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(560): root,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(569): _tail,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(569): _tail,track_slice,,calls,25,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(583): name,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(583): name,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(591): suffix,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(591): suffix,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(711): joinpath,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(711): joinpath,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(719): __truediv__,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(719): __truediv__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(731): parent,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,pathlib.py(731): parent,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,queue.py(122): put,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,queue.py(213): _put,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(1012): run,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(299): __enter__,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(302): __exit__,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(314): _is_owned,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(394): notify,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_compile.py(42): inner,track_slice,,us,41.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_compile.py(42): inner,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,247.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,105.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,19.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,61.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,119.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,41.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,548.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,207.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,973.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,89.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4565.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,28.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,258.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,913.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,139.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1619.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,43.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,3138.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,2732.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,740.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,311.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,3858,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,11855.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,196.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,343.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,354.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,638.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,3790.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,598.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,15110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1079): __call__,track_slice,,us,686.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,1196.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,902.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1145): ,track_slice,,us,618.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1145): ,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1257): __call__,track_slice,,us,1922.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,6037,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(864): __call__,track_slice,,us,564.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_ops.py(864): __call__,track_slice,,calls,2886,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,562.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_tensor.py(40): wrapped,track_slice,,us,26.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_tensor.py(40): wrapped,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,761.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,1738.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,877.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(823): ,track_slice,,us,526.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(823): ,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,3118.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3473.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2674.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,8445.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1469.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,3098.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,147.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,25.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1593.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1642.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3755.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,235.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,580.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2077.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,18.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,3309.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,844.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,6266,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,971.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,1716.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1142.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1381.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,54.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,1092.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,147.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,263.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1263.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1589.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,764.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,471.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,576.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,875.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,4184.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,3619,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,920.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,9.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,546.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(199): record,track_slice,,us,563.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,305.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,2834.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,311.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1390.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,974.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,us,1898.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,351.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,1060,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,14.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,us,436.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,25.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,us,7031.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,us,95.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,63.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,6165.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,3452.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,6102,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,24.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,30.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/storage.py(74): size,track_slice,,us,1665.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/storage.py(74): size,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,619.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,55.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,170.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,19622.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,149.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/__init__.py(67): cdiv,track_slice,,us,86.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,293.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(15): ,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(15): ,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(26): is_iterable,track_slice,,us,30.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(26): is_iterable,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(42): find_paths_if,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(42): find_paths_if,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(46): _impl,track_slice,,us,25.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/_utils.py(46): _impl,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,us,75.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,us,15148.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,us,11698.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,us,28.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(319): ,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(319): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,us,6076.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,us,205.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,us,136.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/compiler.py(26): __init__,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/compiler.py(26): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,4395.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,calls,26,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(21): ,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(21): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(90): visit,track_slice,,us,5.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/driver.py(90): visit,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(226): compile,track_slice,,us,30.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(226): compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,us,12.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,263.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,us,46.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(411): ,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(411): ,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,us,329.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(485): run,track_slice,,us,160.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(485): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,us,3902.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,us,8.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(71): hash,track_slice,,us,20.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(71): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(73): ,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(73): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(107): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(107): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(117): get,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(117): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(130): get,track_slice,,us,1545.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(130): get,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(160): get,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(160): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(223): get,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(223): get,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(347): ,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(347): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,us,123.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(422): __call__,track_slice,,us,1869.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(422): __call__,track_slice,,calls,5104,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(75): __get__,track_slice,,us,4858.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/knobs.py(75): __get__,track_slice,,calls,15629,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,us,893.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,580.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/_allocation.py(46): get,track_slice,,us,876.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/_allocation.py(46): get,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,us,934.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(249): _base32,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(249): _base32,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(38): __init__,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(38): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(62): has_file,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(62): has_file,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(73): get_group,track_slice,,us,13.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/cache.py(73): get_group,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/driver.py(36): active,track_slice,,us,557.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,7659,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,us,1819.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,calls,1440,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,us,585.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(373): ,track_slice,,us,7834.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(373): ,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,us,13.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,us,4776.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,us,29.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(603): ,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(603): ,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,us,17.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,us,35.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(714): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(714): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(718): ,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(718): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(723): run,track_slice,,us,33570.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(723): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,us,19.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1174): __init__,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1215): __setattr__,track_slice,,us,7.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1269): __init__,track_slice,,us,8.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1273): ,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(166): _type_convert,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(175): _type_check,track_slice,,us,12.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(2187): cast,track_slice,,us,2032.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(2187): cast,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(2344): get_origin,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(2344): get_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(317): _deduplicate,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(392): inner,track_slice,,us,913.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(392): inner,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(494): __repr__,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(515): __getitem__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(694): Union,track_slice,,us,13.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(730): ,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(747): Optional,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(892): __init__,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(962): __eq__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(971): __hash__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1599.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,us,53.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,us,100.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,us,715.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1669.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,492.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,17.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,339.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,576.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,124.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,246.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,443.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6926.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1530,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,93.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,55.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,18.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,964.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,1041.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,829.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1050,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,18.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,1024.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2762.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,710.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,247.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,348.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,99.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,687.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,1206.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,us,9132.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,us,813.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,323.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1638.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,622.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,234.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,530.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2159620.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,8912906,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1868.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,564.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2573.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,380.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,1038.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,305467.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,8912906,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,303723.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,8912906,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,7713467.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1350629.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,8914997,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1347595.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,8917088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5684.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,10091.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,128.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,297.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2572,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,534.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,us,83.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,us,477.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,calls,5222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,935.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,232.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,337.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,539.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,512.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,us,248.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,us,2620.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,us,551.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,744423.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,8912901,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,188.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,373.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,155.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2496,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,135.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2154.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,262.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,191.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,4050.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,723.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/logger.py(136): warning_once,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/logger.py(136): warning_once,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1085.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1321.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,1100.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,457.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,271.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,1063.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,592.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,5938.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,773.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,13029.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1401.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,571.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2531.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,5956.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,35.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2807.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,92.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,47.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,71.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,892.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4622,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,us,348.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,103.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,57.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,74.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,us,8.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,156.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,558.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,81.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,916.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,939.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,153.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,545.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(579): ,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,15.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,19.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1377.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,98.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,14.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,149.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2930.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4834.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1360.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1200.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,5302.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2679.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,264.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,15863.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,215.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3601.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,8147.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2896.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,6058.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,8535.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,135.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,495.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,61.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,671.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,93.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,147.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,108.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,23.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,489.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,409.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,399.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,331.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,us,2926.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,us,2144.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,us,232.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,us,885.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,us,1255.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,us,1553.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,us,13234.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,1050.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3451.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2744.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,64.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,6629.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,11583.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6270,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,160.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,22,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3216.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9398,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,15818.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3902.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,17.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,62.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,24.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3381.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,518.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,908.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,2004.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,24.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,17.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,531.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,452.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,182.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,41.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,107.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,215.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,133.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,745.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,24.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,48,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16231.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,56.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9534.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,23840.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,370.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,23.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,948.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6553.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65602,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2896.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,327.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1687.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,396.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,106.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,252232.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,105.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6527.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11207.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,176320.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,186.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,121933.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,25469.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2183.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6762.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,5323.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,268.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,590.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,4074.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2382.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,154807.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,460.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,377.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1235.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,199.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3536.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,907.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5763.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,3121.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,67936.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2300.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,537.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,507.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,32119.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,173.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2996.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,621.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,8380.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,811.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,60.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,327.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,247.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,103.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,985.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7461998.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,user_annotation,nccl:_all_gather_base,track_slice,,us,72734.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,user_annotation,nccl:_all_gather_base,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,878,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,us,591.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,878,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,calls,3030,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,25752047.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(120): update,track_slice,,us,17.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(21): __enter__,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(27): __exit__,track_slice,,us,20.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(37): __init__,track_slice,,us,23.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,19.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(63): __iter__,track_slice,,us,42.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(95): copy,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(299): __enter__,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(302): __exit__,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(308): _release_save,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(311): _acquire_restore,track_slice,,us,65.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(314): _is_owned,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(323): wait,track_slice,,us,52.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(359): wait,track_slice,,us,1398665.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(601): is_set,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(637): wait,track_slice,,us,22.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(655): wait,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,20.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/_monitor.py(69): run,track_slice,,us,79.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(100): acquire,track_slice,,us,37.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(104): release,track_slice,,us,15.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(108): __enter__,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(759): get_lock,track_slice,,us,7.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,32.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,16.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,27150395.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,(117): __instancecheck__,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,contextlib.py(104): __init__,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,contextlib.py(132): __enter__,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,contextlib.py(141): __exit__,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,contextlib.py(299): helper,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,queue.py(154): get,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,queue.py(171): get,track_slice,,us,23.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,queue.py(209): _qsize,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,queue.py(217): _get,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(1012): run,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(299): __enter__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(302): __exit__,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(308): _release_save,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(311): _acquire_restore,track_slice,,us,47.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(314): _is_owned,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(323): wait,track_slice,,us,16.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(355): wait,track_slice,,us,422.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(394): notify,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,14.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,5.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,53.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,19.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,69.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,5.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,25436872.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,12.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(120): update,track_slice,,us,16.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(21): __enter__,track_slice,,us,8.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(27): __exit__,track_slice,,us,16.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(37): __init__,track_slice,,us,27.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,15.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(63): __iter__,track_slice,,us,39.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(95): copy,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(299): __enter__,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(302): __exit__,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(308): _release_save,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(311): _acquire_restore,track_slice,,us,56.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(314): _is_owned,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(323): wait,track_slice,,us,42.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(359): wait,track_slice,,us,1713954.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(601): is_set,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(637): wait,track_slice,,us,22.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(655): wait,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,18.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/_monitor.py(69): run,track_slice,,us,65.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(100): acquire,track_slice,,us,19.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(104): release,track_slice,,us,14.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(108): __enter__,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(759): get_lock,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,148743,148753,Trace,PyTorch Profiler (0),track_slice,,us,27151367.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,148743,148753,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,148743,148753,,PyTorch Profiler,track,,us,27151367.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,733,,thread 733 (VLLM::Worker_TP),track,,us,27151263.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1241,,thread 1241 (VLLM::Worker_TP),track,,us,27151307.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1185,,thread 1185 (VLLM::Worker_TP),track,,us,27151257.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,1159,,thread 1159 (VLLM::Worker_TP),track,,us,27151252.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,4,,stream 4 ,track,,us,27022389.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,3,9,,stream 9 ,track,,us,26833979.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +1,733,878,,,track,,us,27129558.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank1.1782866357009497938.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,51138.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,9443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8747.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,us,265.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_1(1),track_slice,,calls,15,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,us,42.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_16(16),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,53.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,56.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,71.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,us,631.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_63(63),track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,36769.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1003,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,us,2484.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_1(8192)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,us,29287.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_1(8192)_generation_1(1),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,us,17100.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_16(122882)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,us,18065.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_16(122913)_generation_48(48),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,us,1075.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_16(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,6978.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,gpu_user_annotation,nccl:_all_gather_base,track_slice,,calls,1029,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,47.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,101.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,52391.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,100.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,785.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1607.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,29931.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT224x256x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA128_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT7_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,13174.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x176x128_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_11_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,25161.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x208x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_13_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,33865.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x240x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_15_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3217577.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1437,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1225.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,970574.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81589,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1155.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,775.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1266.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1096906.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81586,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1601449.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81579,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,613712.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81592,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2106.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1489.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,445.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10974.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,_fwd_kernel,track_slice,,us,2878734.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,_fwd_kernel,track_slice,,calls,479,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,_topk_topp_kernel,track_slice,,us,235500.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,_topk_topp_kernel,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"at::native::(anonymous namespace)::fill_index_and_segment_kernel(HIP_vector_type*, int, at::cuda::detail::IntDivider)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,us,88.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"at::native::(anonymous namespace)::fill_reverse_indices_kernel(long*, int, at::cuda::detail::IntDivider)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,us,69119.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,ncclDevKernel_Generic_1(ncclDevKernelArgsStorage<4096ul>),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_2,track_slice,,us,7022.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_3,track_slice,,us,5834.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_4,track_slice,,us,585822.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_4,track_slice,,calls,82470,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_5,track_slice,,us,504865.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_5,track_slice,,calls,82474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,718708.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,83516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,534850.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,83514,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8749.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,829597.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,83516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,1158490.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,82470,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,8359.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,10691.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61102.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,us,17190.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::(anonymous namespace)::distribution_elementwise_grid_stride_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1}>(long, at::PhiloxCudaState, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::(anonymous namespace)::distribution_nullary_kernel, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2}, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::uniform_and_transform(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1}>(at::TensorIteratorBase&, at::CUDAGeneratorImpl*, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(hiprandStatePhilox4_32_10*)#2} const&, at::native::templates::cuda::exponential_kernel(at::TensorIteratorBase&, double, at::CUDAGeneratorImpl*)::{lambda()#1}::operator()() const::{lambda()#2}::operator()() const::{lambda(float)#1})::{lambda(int, float)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::(anonymous namespace)::sort_postprocess_kernel(float const*, float*, long*, HIP_vector_type const*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,121.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4509.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,12213.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,14901.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,109.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::(anonymous namespace)::CompareFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast >(at::TensorIteratorBase&, at::native::FillFunctor const&)::{lambda(int, bool)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15202.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,93.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5767.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1048,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,us,42487.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::reduce_kernel<512, 1, at::native::ReduceOp, unsigned int, long, 4, 4> >(at::native::ReduceOp, unsigned int, long, 4, 4>)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,us,279.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::tensor_kernel_scan_innermost_dim >(float*, float const*, unsigned int, unsigned int, unsigned int, float, std::plus)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,4152.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,88.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,204.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,165.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,36,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,16.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,us,94.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array >(int, at::native::(anonymous namespace)::masked_fill_kernel(at::TensorIterator&, c10::Scalar const&)::{lambda()#1}::operator()() const::{lambda()#7}::operator()() const::{lambda(float, bool)#1}, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,us,14382.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::BinaryFunctor >, std::array >(int, at::native::BinaryFunctor >, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,us,93.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctorOnOther_add, std::array >(int, at::native::CUDAFunctorOnOther_add, std::array)",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5804.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5814.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,11684.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2068,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9996.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,6381.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2492552.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,83500,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,518165.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4528418.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,963,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,us,88.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::init_lookback_scan_state_kernel, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper >(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state, unsigned int, rocprim::ROCPRIM_400200_NS::detail::block_id_wrapper, unsigned int, rocprim::ROCPRIM_400200_NS::detail::lookback_scan_state::value_type*)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,us,55.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,us,49.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,us,797.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3}, rocprim::ROCPRIM_400200_NS::detail::merge_oddeven_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl*, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare >(float*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits*>::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()*, at::cuda::cub::detail::OpaqueType<8>*>(float*, float*, at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*) const::{lambda(auto:1)#3})",track_slice,,calls,112,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,us,54.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_partition_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#1})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,us,42.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2}, rocprim::ROCPRIM_400200_NS::detail::merge_mergepath_config_selector>(rocprim::ROCPRIM_400200_NS::detail::merge_sort_block_merge_impl >(long*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int, rocprim::ROCPRIM_400200_NS::detail::radix_merge_compare, ihipStream_t*, bool, std::iterator_traits::value_type*, std::iterator_traits::value_type*, unsigned int*, rocprim::ROCPRIM_400200_NS::detail::vsmem_t)::{lambda(auto:1, auto:2, auto:3, auto:4)#1}::operator()(long*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*) const::{lambda(auto:1)#2})",track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,170.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, float, at::cuda::cub::detail::OpaqueType<8> >, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(float const*, float*, at::cuda::cub::detail::OpaqueType<8> const*, at::cuda::cub::detail::OpaqueType<8>*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, long, rocprim::ROCPRIM_400200_NS::empty_type>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::radix_sort_config_selector>(rocprim::ROCPRIM_400200_NS::detail::radix_sort_block_sort, false, long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::identity_decomposer>(long const*, long*, rocprim::ROCPRIM_400200_NS::empty_type*, rocprim::ROCPRIM_400200_NS::empty_type*, unsigned int, unsigned int&, rocprim::ROCPRIM_400200_NS::identity_decomposer, unsigned int, unsigned int, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,us,107.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::scan_impl<(rocprim::ROCPRIM_400200_NS::detail::lookback_scan_determinism)0, false, false, rocprim::ROCPRIM_400200_NS::default_config, float const*, float*, float, std::plus, float>(void*, unsigned long&, float const*, float*, float, unsigned long, std::plus, ihipStream_t*, bool)::{lambda(auto:1, auto:2)#1}::operator(), std::integral_constant >(std::integral_constant, std::integral_constant) const::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,90.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, true>, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl*, at::cuda::cub::detail::OpaqueType<8>*, rocprim::ROCPRIM_400200_NS::identity > >(at::cuda::cub::detail::OpaqueType<8>*, at::cuda::cub::detail::OpaqueType<8>*, unsigned long, rocprim::ROCPRIM_400200_NS::identity >, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,us,89.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void rocprim::ROCPRIM_400200_NS::detail::trampoline_kernel, (rocprim::ROCPRIM_400200_NS::detail::target_arch)950, rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1}, rocprim::ROCPRIM_400200_NS::detail::default_config_selector>(rocprim::ROCPRIM_400200_NS::detail::transform_impl >(float*, float*, unsigned long, rocprim::ROCPRIM_400200_NS::identity, ihipStream_t*, bool)::{lambda(auto:1)#1})",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,20973.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void vllm::cross_device_reduce_1stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,2415,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,us,3197518.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void vllm::cross_device_reduce_2stage<__hip_bfloat16, 8>(vllm::RankData*, vllm::RankSignals, vllm::Signal*, __hip_bfloat16*, int, int)",track_slice,,calls,164672,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,574176.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,83513,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,38870.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 1>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,4799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,850.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 2, 16, 8, 2, 1>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,16,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,47.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,5690.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,## Call CompiledFxGraph fjhemltmi7yku3xexnt5bzsfkczqcq4t44mkfhdo6557msmkkcn4 ##,track_slice,,us,447.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,## Call CompiledFxGraph fjhemltmi7yku3xexnt5bzsfkczqcq4t44mkfhdo6557msmkkcn4 ##,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,## Call CompiledFxGraph fwxdeobselamkiqw6uktv25jp6nnacxfadpt4dpdobvf4csduxa7 ##,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,## Call CompiledFxGraph fwxdeobselamkiqw6uktv25jp6nnacxfadpt4dpdobvf4csduxa7 ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,## Call CompiledFxGraph fzmfl6swnqhgpmoq7a7ykevcxgvltkmvhirambxsajab62gpas6c ##,track_slice,,us,19.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,## Call CompiledFxGraph fzmfl6swnqhgpmoq7a7ykevcxgvltkmvhirambxsajab62gpas6c ##,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1892.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1431.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,_rocm_C::paged_attention,track_slice,,us,1434.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,_rocm_C::paged_attention,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,_rocm_C::wvSplitK,track_slice,,us,58.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_local_scalar_dense,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_local_scalar_dense,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_scaled_mm,track_slice,,us,156757.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_scaled_mm,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_softmax,track_slice,,us,4093.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_to_copy,track_slice,,us,6306.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_to_copy,track_slice,,calls,5228,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_unsafe_view,track_slice,,us,550.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::_unsafe_view,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::add,track_slice,,us,9474.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::add,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::alias,track_slice,,us,1060.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::alias,track_slice,,calls,2964,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::argmax,track_slice,,us,6601.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::argmax,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::as_strided,track_slice,,us,13691.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::as_strided,track_slice,,calls,61255,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::clone,track_slice,,us,1325.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::clone,track_slice,,calls,1028,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::copy_,track_slice,,us,38842.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::copy_,track_slice,,calls,17780,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::cumsum,track_slice,,us,135.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::cumsum,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::detach,track_slice,,us,1621.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::detach,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::detach_,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::detach_,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::div_,track_slice,,us,7116.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::div_,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::empty,track_slice,,us,9236.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::empty,track_slice,,calls,6501,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::empty_like,track_slice,,us,1844.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::empty_like,track_slice,,calls,2474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::empty_strided,track_slice,,us,13724.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::empty_strided,track_slice,,calls,6674,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::exponential_,track_slice,,us,5253.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::exponential_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::fill_,track_slice,,us,8651.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::fill_,track_slice,,calls,6300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::flatten,track_slice,,us,1117.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::flatten,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::index,track_slice,,us,19635.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::index,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::index_select,track_slice,,us,1743.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::index_select,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::item,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::item,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::le,track_slice,,us,73.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::le,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::lift_fresh,track_slice,,us,339.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::lift_fresh,track_slice,,calls,3157,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::linear,track_slice,,us,1721.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::lt,track_slice,,us,2398.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::lt,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::masked_fill_,track_slice,,us,65.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::masked_fill_,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::matmul,track_slice,,us,1068.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::mm,track_slice,,us,37349.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::movedim,track_slice,,us,1656.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::movedim,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::permute,track_slice,,us,1083.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::permute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::reshape,track_slice,,us,4579.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::reshape,track_slice,,calls,5241,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::resize_,track_slice,,us,1751.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::resize_,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::resolve_conj,track_slice,,us,217.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::resolve_conj,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::resolve_neg,track_slice,,us,153.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::resolve_neg,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::rsub,track_slice,,us,50.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::rsub,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::scatter_,track_slice,,us,149.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::scatter_,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::select,track_slice,,us,3216.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::select,track_slice,,calls,2980,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::slice,track_slice,,us,31590.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::slice,track_slice,,calls,49001,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::softmax,track_slice,,us,2135.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::softmax,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::sort,track_slice,,us,358.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::sort,track_slice,,calls,34,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::sub,track_slice,,us,6014.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::sub,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::t,track_slice,,us,3533.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::t,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::to,track_slice,,us,3965.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::to,track_slice,,calls,10936,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::transpose,track_slice,,us,2504.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::transpose,track_slice,,calls,4867,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::unsqueeze,track_slice,,us,2397.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::unsqueeze,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::view,track_slice,,us,5886.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::view,track_slice,,calls,11101,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::zero_,track_slice,,us,21.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,aten::zero_,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,c10d::_allgather_base_,track_slice,,us,8749.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,c10d::_allgather_base_,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,record_param_comms,track_slice,,us,8086.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,record_param_comms,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_2,track_slice,,us,33.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_2,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_3,track_slice,,us,27.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_4,track_slice,,us,701.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_4,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_5,track_slice,,us,615.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_5,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,us,693.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_silu_slice_2,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,us,742.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused__to_copy_clamp_mul_reciprocal_view_0,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,36.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,us,774.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_1,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,us,756.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_red_fused__to_copy_clamp_fused_add_rms_norm_mul_reciprocal_3,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,us,32.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_red_fused__to_copy_clamp_mul_reciprocal_rms_norm_1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,triton_red_fused_fused_add_rms_norm_3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::all_gather,track_slice,,us,2289.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::all_reduce,track_slice,,us,944.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,2235.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,4191.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::unified_attention_with_output,track_slice,,us,879.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,586.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipCtxGetCurrent,track_slice,,us,416.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,1060.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,2924,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipDeviceSynchronize,track_slice,,us,42.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipEventDestroy,track_slice,,us,1524.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipEventDestroy,track_slice,,calls,3132,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipEventRecord,track_slice,,us,13490.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipEventRecord,track_slice,,calls,6274,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipEventSynchronize,track_slice,,us,1340.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipEventSynchronize,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipExtLaunchKernel,track_slice,,us,5528.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipExtLaunchKernel,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,14123.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2947,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipFuncGetAttribute,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipFuncGetAttribute,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3452.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,8874,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipGraphLaunch,track_slice,,us,597008.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipGraphLaunch,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipHostMalloc,track_slice,,us,230.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipLaunchKernel,track_slice,,us,75626.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipLaunchKernel,track_slice,,calls,20567,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipMalloc,track_slice,,us,210.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipMalloc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipMemcpyAsync,track_slice,,us,49663.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipMemcpyAsync,track_slice,,calls,11532,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,22132.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipModuleLoadDataEx,track_slice,,us,1223.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipModuleLoadDataEx,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipPointerGetAttribute,track_slice,,us,6312.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,28122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,us,423.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipStreamGetCaptureInfo_v2,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3647.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12559,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipStreamWaitEvent,track_slice,,us,6093.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/h7/ch7kkoqmcaeixfifd2fw773ddexhh3r7gnxwwdkpnfgifruj3v5a.py(814): call,track_slice,,us,209.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/h7/ch7kkoqmcaeixfifd2fw773ddexhh3r7gnxwwdkpnfgifruj3v5a.py(814): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/my/cmyy6dmphjoowvwpy6vcbwga3xpyft4fcsidvppl2dwwbvcgg22c.py(1174): call,track_slice,,us,36799.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/my/cmyy6dmphjoowvwpy6vcbwga3xpyft4fcsidvppl2dwwbvcgg22c.py(1174): call,track_slice,,calls,474,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/qe/cqeszz5h2cqhv7uvzedosbjmqglxv6t2fxsox3i56g44s73dozz6.py(799): call,track_slice,,us,204.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/54aa777d22ba1555b12f92e3eb91ce4ed7e36b1885870dda74f8719ecc68070f/inductor_cache/qe/cqeszz5h2cqhv7uvzedosbjmqglxv6t2fxsox3i56g44s73dozz6.py(799): call,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,542.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,157.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1167.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,5443,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,596.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1476.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1064.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,150.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,487,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,241.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1311.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2869.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,179.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,65.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,234.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,8445.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,842.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1379.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2152,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1214.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,5142.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,262.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,37.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,964.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,109.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4143.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,23295,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1836.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4314.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,46960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1118.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,15069,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,44.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,126,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,81.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,6453.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,92799,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,86.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,13139.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,14792.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,364397,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1741.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,34704.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,6855.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,65952,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,961.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3109,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,11.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,398173.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,9043850,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,14421.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,33848,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,7922.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,18827,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,70.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,16.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1536510.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,9039663,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,8.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,96,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,46.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1184.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3712.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3543.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1297.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,452.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,377586.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,9043851,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,369.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,4182,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3044.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,199.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,146.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3946.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,9898,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1576.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2775.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1766.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,4098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,10872.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2053.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,23.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2032.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3685.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,26.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,7616.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,133508,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1461.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,161.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3147.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,66122,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,682.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,249.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,214.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,8934.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,8375,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,5236.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,35.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4173.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,24276,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,438.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3135,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,728.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,5136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,40.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,577,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2358.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,220.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1926,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,11428.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3528,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1176.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1446,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,625.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3136,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1533.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,14904.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,200583,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1675.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2089,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,5751.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,5220,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1812.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1524,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3829.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,25388.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,378492,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,34.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2163.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,498.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,225.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,18729.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,66516,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,793.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,7943,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1882.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3959,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,282.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,988.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,290.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,43.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1652.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1409.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1661.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1638.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,612.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2010,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,227.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,6418.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1252.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,52.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1378.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,30.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1910.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3238.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,10995.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2100,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4720.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4415.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,5346.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3149,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,840.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4171.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,43.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,45.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,582.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1598.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,3144,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1835.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1061,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,44.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,316.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,117.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,561,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,3389.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,16058,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2287.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,80.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,12554.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,5691,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,331.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1118.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1028.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2787.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,2105,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,2808.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,799.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,518.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,5114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,4365.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,5844,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,1366.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,45.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,us,22.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(804): get,track_slice,,us,589.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(804): get,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(117): __instancecheck__,track_slice,,us,244.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(117): __instancecheck__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(260): __init__,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(260): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(309): __init__,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(309): __init__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(319): decode,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(319): decode,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(16): exists,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(16): exists,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(39): isdir,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(39): isdir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(1390): _handle_fromlist,track_slice,,us,22.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(1390): _handle_fromlist,track_slice,,calls,49,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(645): parent,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(645): parent,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(200): makedirs,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(200): makedirs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(709): __getitem__,track_slice,,us,1982.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(709): __getitem__,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(791): encode,track_slice,,us,969.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(791): encode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(795): decode,track_slice,,us,416.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(795): decode,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(808): getenv,track_slice,,us,685.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(808): getenv,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(100): split,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(100): split,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(138): splitroot,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(138): splitroot,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(41): _get_sep,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(41): _get_sep,track_slice,,calls,10,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(71): join,track_slice,,us,12.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(71): join,track_slice,,calls,9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(0): ,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(0): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(1): ,track_slice,,us,440.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(1): ,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(1): ,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(1): launcher,track_slice,,us,1148.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(1): launcher,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,18.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,14.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,9.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,12.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): __eq__,track_slice,,us,1024.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): __eq__,track_slice,,calls,3114,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): __hash__,track_slice,,us,1878.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): __hash__,track_slice,,calls,4158,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): __init__,track_slice,,us,4315.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): __init__,track_slice,,calls,7403,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): __repr__,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): dynamic_func,track_slice,,us,22061.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(2): dynamic_func,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,10.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,9.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,9.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,10.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,10.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,11.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,21.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(404): execution_fn,track_slice,,us,7631.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(404): execution_fn,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,14.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,11.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,base64.py(166): _b32encode,track_slice,,us,21.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,base64.py(166): _b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,base64.py(249): b32encode,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,base64.py(249): b32encode,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,collections/__init__.py(355): namedtuple,track_slice,,us,113.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,collections/__init__.py(355): namedtuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,collections/__init__.py(429): ,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,collections/__init__.py(429): ,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(104): __init__,track_slice,,us,6360.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(104): __init__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(132): __enter__,track_slice,,us,3447.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(132): __enter__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(141): __exit__,track_slice,,us,2926.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(141): __exit__,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(299): helper,track_slice,,us,4035.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(299): helper,track_slice,,calls,9413,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(772): __init__,track_slice,,us,561.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(772): __init__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(775): __enter__,track_slice,,us,617.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(775): __enter__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(778): __exit__,track_slice,,us,463.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,contextlib.py(778): __exit__,track_slice,,calls,11414,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,copy.py(247): _reconstruct,track_slice,,us,1880.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,copy.py(247): _reconstruct,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,copy.py(61): copy,track_slice,,us,3672.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,copy.py(61): copy,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,copyreg.py(98): __newobj__,track_slice,,us,469.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,dataclasses.py(255): wrapper,track_slice,,us,14.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,dataclasses.py(255): wrapper,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(1128): __new__,track_slice,,us,12.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(1128): __new__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(1266): __hash__,track_slice,,us,1154.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(1266): __hash__,track_slice,,calls,10423,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(1291): value,track_slice,,us,372.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(1291): value,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(202): __get__,track_slice,,us,1619.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(202): __get__,track_slice,,calls,7170,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(720): __call__,track_slice,,us,29.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,enum.py(720): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,functools.py(982): __get__,track_slice,,us,1216.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,functools.py(982): __get__,track_slice,,calls,1108,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/__init__.py(183): dumps,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/__init__.py(183): dumps,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/__init__.py(274): load,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/__init__.py(274): load,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/__init__.py(299): loads,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/__init__.py(299): loads,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/decoder.py(333): decode,track_slice,,us,7.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/decoder.py(333): decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/decoder.py(344): raw_decode,track_slice,,us,14.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/encoder.py(105): __init__,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/encoder.py(183): encode,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/encoder.py(183): encode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/encoder.py(205): iterencode,track_slice,,us,43.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,json/encoder.py(205): iterencode,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,logging/__init__.py(1517): debug,track_slice,,us,584.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,266.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,2093,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,1.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,8.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,734.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8364,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,29.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1531.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,nn.Module: Sampler_0,track_slice,,us,1360.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,nn.Module: Sampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1019.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,597.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,13.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,80.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,483.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,84.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,550.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,153.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,1062.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1882.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4176,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,105.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,3005.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1005): open,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1005): open,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1015): read_bytes,track_slice,,us,2.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1015): read_bytes,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1022): read_text,track_slice,,us,8.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1022): read_text,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1157): __init__,track_slice,,us,11.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1157): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1164): __new__,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(1164): __new__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(358): __init__,track_slice,,us,14.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(358): __init__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(380): with_segments,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(380): with_segments,track_slice,,calls,8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(387): _parse_path,track_slice,,us,38.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(387): _parse_path,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(407): _load_parts,track_slice,,us,14.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(407): _load_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(420): _from_parsed_parts,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(429): _format_parsed_parts,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(437): __str__,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(437): __str__,track_slice,,calls,11,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(447): __fspath__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(447): __fspath__,track_slice,,calls,7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(551): drive,track_slice,,us,7.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(551): drive,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(560): root,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(560): root,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(569): _tail,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(569): _tail,track_slice,,calls,25,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(583): name,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(583): name,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(591): suffix,track_slice,,us,5.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(591): suffix,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(711): joinpath,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(711): joinpath,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(719): __truediv__,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(719): __truediv__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(731): parent,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,pathlib.py(731): parent,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,queue.py(122): put,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,queue.py(213): _put,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(1012): run,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(299): __enter__,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(302): __exit__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(314): _is_owned,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(394): notify,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_compile.py(42): inner,track_slice,,us,35.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_compile.py(42): inner,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,211.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,99.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,14.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,65.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,123.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,34.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,6.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,554.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2406,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,193.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,949.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,95.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4590.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,28.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,257.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,903.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,134.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1584.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,38.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,3183.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,2606.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,685.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,279.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,3858,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,11848.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,177.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,343.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,395.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,625.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,2921.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,538.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,15110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1079): __call__,track_slice,,us,687.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,994.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,831.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1145): ,track_slice,,us,558.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1145): ,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1257): __call__,track_slice,,us,1816.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,6037,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(864): __call__,track_slice,,us,559.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_ops.py(864): __call__,track_slice,,calls,2886,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_tensor.py(1114): __rsub__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,573.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_tensor.py(40): wrapped,track_slice,,us,25.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_tensor.py(40): wrapped,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,730.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,1735.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,850.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(823): ,track_slice,,us,520.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(823): ,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,3095.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3549.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2593.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,8140.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1364.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2987.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,147.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,26.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1219.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1423.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3416.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,226.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,559.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2125.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,5686,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,10.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,3135.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,818.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,6266,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,947.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,1561.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,3133,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1204.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1347.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,7775,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,47.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,1081.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,127.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,7.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,257.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1227.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1513.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,726.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,440.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,525.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,877.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,3994.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,3619,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,920.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,8.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,540.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(199): record,track_slice,,us,543.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,298.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,2685.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,316.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1359.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,998.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,us,1649.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/c10d_logger.py(80): wrapper,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,442.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,1060,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,11.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,us,381.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1154): _check_single_tensor,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,3.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,12.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,23.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,4.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,us,7019.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(4090): all_gather_into_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,us,118.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(712): pg_coalesce_state,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,66.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,6290.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2678.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,6102,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,22.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,6.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,27.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/storage.py(74): size,track_slice,,us,1640.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/storage.py(74): size,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,664.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,48.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,210.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,18517.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4660,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,160.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/__init__.py(67): cdiv,track_slice,,us,79.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,264.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(14): get_iterable_path,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(147): is_namedtuple,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(15): ,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(15): ,track_slice,,calls,19,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(26): is_iterable,track_slice,,us,33.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(26): is_iterable,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(42): find_paths_if,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(42): find_paths_if,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(46): _impl,track_slice,,us,25.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/_utils.py(46): _impl,track_slice,,calls,42,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(110): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(119): supports_target,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(123): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,us,74.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(131): parse_options,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(133): ,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(161): pack_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,us,14778.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(187): is_within_2gb,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(205): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,us,12189.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(212): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(568): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,us,27.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/compiler.py(91): __post_init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(223): make_kernel_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(229): _flatten_signature,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,us,7.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(245): annotate_arguments,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(297): wrap_handle_tensordesc,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,us,15.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(317): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(319): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(319): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,us,5931.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(343): __call__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,us,198.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(347): allocate_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,us,127.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(355): allocate_default_profile_scratch,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/amd/driver.py(396): get_current_target,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/compiler.py(26): __init__,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/compiler.py(26): __init__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/compiler.py(74): parse_attr,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,4202.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,15618,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(15): _is_descriptor,track_slice,,calls,26,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(19): wrap_handle_tensordesc_impl,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(21): ,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(21): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(85): expand_signature,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(90): visit,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/driver.py(90): visit,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/backends/nvidia/compiler.py(163): supports_target,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(226): compile,track_slice,,us,30.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(226): compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,us,11.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(366): make_backend,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,248.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,us,45.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(409): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(411): ,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(411): ,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,us,305.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(448): _init_handles,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(485): run,track_slice,,us,156.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(485): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,us,3826.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(491): launch_metadata,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,us,8.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(54): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(71): hash,track_slice,,us,19.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(71): hash,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(73): ,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(73): ,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/compiler/compiler.py(83): parse_options,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(107): get,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(107): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(117): get,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(117): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(130): get,track_slice,,us,1500.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(130): get,track_slice,,calls,15623,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(160): get,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(160): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(223): get,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(223): get,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(347): ,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(347): ,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,us,129.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(352): get_triton_dir,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(422): __call__,track_slice,,us,1947.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(422): __call__,track_slice,,calls,5104,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(75): __get__,track_slice,,us,4798.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/knobs.py(75): __get__,track_slice,,calls,15629,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,us,893.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/language/core.py(359): _unwrap_if_constexpr,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,575.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,2892,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/_allocation.py(46): get,track_slice,,us,599.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/_allocation.py(46): get,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,us,893.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/_allocation.py(67): has_profile_allocator,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(249): _base32,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(249): _base32,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,us,6.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(254): get_cache_manager,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(315): get_cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(38): __init__,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(38): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(59): _make_path,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(62): has_file,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(62): has_file,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(73): get_group,track_slice,,us,12.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/cache.py(73): get_group,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/driver.py(36): active,track_slice,,us,533.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,7659,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,us,1838.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(1132): __call__,track_slice,,calls,1440,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,us,572.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(367): __getitem__,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(373): ,track_slice,,us,7951.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(373): ,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,us,11.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(377): serialize_specialization_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(460): get_full_name,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(514): cache_key,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,us,4808.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(589): compute_cache_key,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,us,29.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(596): replace_callables,track_slice,,calls,40,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(603): ,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(603): ,track_slice,,calls,39,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,us,18.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(630): _call_hook,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,us,33.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(699): _pack_args,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(714): ,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(714): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(718): ,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(718): ,track_slice,,calls,13,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(723): run,track_slice,,us,33173.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(723): run,track_slice,,calls,2551,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,us,19.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,triton/runtime/jit.py(874): _do_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1174): __init__,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1215): __setattr__,track_slice,,us,6.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1269): __init__,track_slice,,us,8.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1273): ,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(166): _type_convert,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(175): _type_check,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(2187): cast,track_slice,,us,2074.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(2187): cast,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(2344): get_origin,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(2344): get_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(317): _deduplicate,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(392): inner,track_slice,,us,867.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(392): inner,track_slice,,calls,1047,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(494): __repr__,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(515): __getitem__,track_slice,,us,3.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(694): Union,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(730): ,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(747): Optional,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(892): __init__,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(962): __eq__,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(971): __hash__,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1385.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,us,46.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(1634): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,us,93.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(1751): is_triton_gemm_enabled,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,us,549.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(1756): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1621.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,455.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,17.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,329.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,555.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,109.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,248.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,526.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6721.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1530,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,77.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,47.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,16.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,740.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,737.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,839.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1050,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,17.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,11.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,1038.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3138,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2701.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,681.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,170.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,220.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,96.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,486,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,625.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,1216.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,us,8659.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/base_device_communicator.py(184): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,us,827.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/cuda_communicator.py(254): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,319.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1798.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,645.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,230.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,432.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2100057.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,9039668,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1892.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,555.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2709.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,348.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,937.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,320291.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,9039668,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,277235.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,9039668,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,7910140.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1371079.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,9041759,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1368861.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,9043850,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5491.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9908.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2091,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,121.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,278.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2572,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,558.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,us,74.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(1334): get_tp_group,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,us,456.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(1350): get_pp_group,track_slice,,calls,5222,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,883.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(2224): is_local_first_rank,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,222.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,336.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,502.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,468.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2090,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,us,245.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(631): _all_reduce_out_place,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,us,2576.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(636): all_gather,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,us,605.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/parallel_state.py(652): _all_gather_out_place,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,719460.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,9039663,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,166.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,966,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,334.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,143.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2496,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,123.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1536,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2015.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,220.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,185.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,4003.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,728.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/logger.py(136): warning_once,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/logger.py(136): warning_once,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/logger.py(96): _should_log_with_scope,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1148.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1920,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1066.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,961.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,468.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,267.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,1135.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,639.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,5543.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,649.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,13105.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1434.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,534.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2458.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,3675.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,30.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2390.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,98.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,37.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,75.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,785.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4622,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,us,303.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/interface.py(172): is_cpu,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,95.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3098,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,51.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,76.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(327): use_rocm_custom_paged_attention,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,157.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,560.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2880,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,4.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,76.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,868.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,835.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,5.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,166.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,538.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(579): ,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(584): ,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(592): ,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/triton_utils/jit_monitor.py(95): _on_jit_compile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,20.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1315.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,98.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,136.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2865.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4789.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1297.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1232.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,5307.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2600.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,960,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,234.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,15940.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,220.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,480,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3289.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7613.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2814.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1038,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5768.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,8095.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,135.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,488.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,50.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,4.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,632.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,93.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,132.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2092,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,104.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,25.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,458.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,409.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,367.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1110,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,303.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,13.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,10.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,us,2831.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(123): forward_native,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,us,2075.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(345): apply_top_k_top_p,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,us,234.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(363): apply_top_k_top_p_pytorch,track_slice,,calls,17,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,us,882.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(430): empty_exponential_noise_like,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,us,1330.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(437): sample_with_exponential_noise,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,us,1471.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(446): random_sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,us,12614.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/ops/topk_topp_triton.py(856): apply_top_k_top_p_triton,track_slice,,calls,1027,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,889.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3305.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2492.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,72.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,6070.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,11787.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6270,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,162.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,22,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3109.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9398,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14573.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3780.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4161,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,16.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,56.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,22.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3318.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,496.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,843.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1591.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4097,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,27.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,17.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,531.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,414.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,179.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,32.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,107.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,205.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,126.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,828.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5300,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,5.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,4.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,24,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,22.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,48,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,3.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16125.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71735,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,51.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9507.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,23020.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65538,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,360.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,23.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,842.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6657.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65602,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2965.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,307.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1637.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,340.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,92.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,249235.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,121.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6355.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11285.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,178386.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,194.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,122124.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,25068.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2154.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6659.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,5038.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,222.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,536.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3824.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2369.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,153347.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,434.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,405.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1169.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,194.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3245.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,917.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5708.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,3069.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,67522.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2211.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,473.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2088,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,507.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,31169.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,166.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2811.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,596.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7942.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,9.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,729.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,57.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,304.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,221.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1045,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,103.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,906.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1046,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7472382.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,user_annotation,nccl:_all_gather_base,track_slice,,us,43493.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,user_annotation,nccl:_all_gather_base,track_slice,,calls,1044,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,882,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,us,797.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,882,cuda_runtime,hipThreadExchangeStreamCaptureMode,track_slice,,calls,3094,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,11.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,4.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,25884603.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,5.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(120): update,track_slice,,us,18.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(17): __init__,track_slice,,us,6.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(21): __enter__,track_slice,,us,11.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(27): __exit__,track_slice,,us,23.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(37): __init__,track_slice,,us,27.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,26.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(63): __iter__,track_slice,,us,53.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(95): copy,track_slice,,us,15.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(299): __enter__,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(302): __exit__,track_slice,,us,7.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(308): _release_save,track_slice,,us,1.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(311): _acquire_restore,track_slice,,us,66.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(314): _is_owned,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(323): wait,track_slice,,us,59.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(359): wait,track_slice,,us,1266039.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(601): is_set,track_slice,,us,1.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(637): wait,track_slice,,us,23.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(655): wait,track_slice,,us,9.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,25.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/_monitor.py(69): run,track_slice,,us,91.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(100): acquire,track_slice,,us,40.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(104): release,track_slice,,us,17.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(108): __enter__,track_slice,,us,9.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(111): __exit__,track_slice,,us,6.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(759): get_lock,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,36.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,17.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,27150422.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,(117): __instancecheck__,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,contextlib.py(104): __init__,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,contextlib.py(132): __enter__,track_slice,,us,3.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,contextlib.py(141): __exit__,track_slice,,us,3.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,contextlib.py(299): helper,track_slice,,us,7.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,2.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,2.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,queue.py(154): get,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,queue.py(171): get,track_slice,,us,22.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,queue.py(209): _qsize,track_slice,,us,9.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,queue.py(217): _get,track_slice,,us,10.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(299): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(302): __exit__,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(308): _release_save,track_slice,,us,0.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(311): _acquire_restore,track_slice,,us,51.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(314): _is_owned,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(323): wait,track_slice,,us,14.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(355): wait,track_slice,,us,395.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(394): notify,track_slice,,us,3.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,12.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,15.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,5.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,9.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,4.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,59.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,20.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,9.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,62.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,8.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,6.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,24855922.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,12.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(120): update,track_slice,,us,17.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(27): __exit__,track_slice,,us,16.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(37): __init__,track_slice,,us,26.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,20.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(63): __iter__,track_slice,,us,44.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(95): copy,track_slice,,us,13.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(299): __enter__,track_slice,,us,2.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(302): __exit__,track_slice,,us,7.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(308): _release_save,track_slice,,us,1.4,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(311): _acquire_restore,track_slice,,us,65.9,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(314): _is_owned,track_slice,,us,2.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(323): wait,track_slice,,us,55.5,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(359): wait,track_slice,,us,2294850.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(601): is_set,track_slice,,us,0.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(637): wait,track_slice,,us,26.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(655): wait,track_slice,,us,8.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,22.6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/_monitor.py(69): run,track_slice,,us,71.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(100): acquire,track_slice,,us,21.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(104): release,track_slice,,us,14.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(108): __enter__,track_slice,,us,7.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.7,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(759): get_lock,track_slice,,us,6.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,148743,148753,Trace,PyTorch Profiler (0),track_slice,,us,27151372.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,148743,148753,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,148743,148753,,PyTorch Profiler,track,,us,27151372.2,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,783,,thread 783 (VLLM::Worker_TP),track,,us,27151269.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1258,,thread 1258 (VLLM::Worker_TP),track,,us,27151308.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1209,,thread 1209 (VLLM::Worker_TP),track,,us,27151263.0,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,1161,,thread 1161 (VLLM::Worker_TP),track,,us,27151259.1,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,4,,stream 4 ,track,,us,27022441.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,7,9,,stream 9 ,track,,us,26833976.3,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +5,783,882,,,track,,us,27132569.8,parse_trace,./data/decode64-baseline-profile-traces-warm/profile/traces/rank5.1782866355402236357.pt.trace.json.gz,decode64-baseline-profile-traces-warm,baseline,profile,, +,,,,output_throughput,run,,tokens_per_s,1980.1303867308009,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,total_throughput,run,,tokens_per_s,17821.173480577207,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,request_throughput,run,,requests_per_s,1.9337210807917977,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,ttft,run,mean,ms,7512.234225287102,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,ttft,run,median,ms,6150.880074128509,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,ttft,run,p99,ms,12552.844355814159,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,ttft,run,std,ms,3571.201864470414,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,tpot,run,mean,ms,24.985698685292398,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,tpot,run,median,ms,26.31535264640639,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,tpot,run,p99,ms,31.81843893562434,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,tpot,run,std,ms,3.474316700682904,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,num_prompts,run,,requests,64,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,completed,run,,requests,64,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,duration,run,,s,33.09681041166186,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +,,,,output_tokens,run,,tokens,65536,parse_vllm,./data/decode64-exp-profile-traces-warm/results/vllm_iris.json,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_64(64),kernel,,calls,1018,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_64(64),kernel,mean,us,20090.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_64(64),kernel,,us,20452000.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,one_shot_all_reduce_gluon,kernel,,calls,164864,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,one_shot_all_reduce_gluon,kernel,mean,us,41.084,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,one_shot_all_reduce_gluon,kernel,,us,6773000.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_C_custom_ar::qr_all_reduce,kernel,,calls,805,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_C_custom_ar::qr_all_reduce,kernel,mean,us,5652.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_C_custom_ar::qr_all_reduce,kernel,,us,4550000.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void quickreduce::allreduce_prototype_twoshot Device),kernel,,calls,11331,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,5.554,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Memcpy DtoD (Device -> Device),kernel,,us,62934.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::_softmax,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::_softmax,kernel,mean,us,60.106,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::_softmax,kernel,,us,61849.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::(anonymous namespace)::cunn_SoftMax...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::(anonymous namespace)::cunn_SoftMax...,kernel,mean,us,60.106,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::(anonymous namespace)::cunn_SoftMax...,kernel,,us,61849.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_C_cache_ops::reshape_and_cache,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_C_cache_ops::reshape_and_cache,kernel,mean,us,146.73,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_C_cache_ops::reshape_and_cache,kernel,,us,58692.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aiter::top_p_sampling_from_probs,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aiter::top_p_sampling_from_probs,kernel,mean,us,53.3,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aiter::top_p_sampling_from_probs,kernel,,us,54845.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,mean,us,53.3,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,,us,54845.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::mm,kernel,,calls,1027,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::mm,kernel,mean,us,50.238,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::mm,kernel,,us,51594.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,calls,1022,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,mean,us,50.221,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,us,51326.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_62(62),kernel,,calls,2,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,19647.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_62(62),kernel,,us,39295.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.935,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,18321.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,17399.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_47(47),kernel,,us,17399.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,16.09,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,16557.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::div_,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::div_,kernel,mean,us,14.479,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::div_,kernel,,us,14898.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.479,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14898.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,14697.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_31(31),kernel,,us,14697.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_15(15),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_15(15),kernel,mean,us,12657.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_15(15),kernel,,us,12657.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,155.391,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12431.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::index,kernel,,calls,2061,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::index,kernel,mean,us,8.923,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::index,kernel,,us,11975.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::fill_,kernel,,calls,6179,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::fill_,kernel,mean,us,1.903,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::fill_,kernel,,us,11759.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2053,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.681,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,11663.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,144.329,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,11546.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::add,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::add,kernel,mean,us,3.733,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::add,kernel,,us,11525.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,triton_poi_fused_2,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,triton_poi_fused_2,kernel,mean,us,28.405,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,triton_poi_fused_2,kernel,,us,11362.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_compute_slot_mapping_kernel,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.278,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_compute_slot_mapping_kernel,kernel,,us,10576.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_2(2),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_2(2),kernel,mean,us,10569.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,execute_context_0(0)_generation_2(2),kernel,,us,10569.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.735,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,10017.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.761,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,9015.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,mean,us,8.551,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,us,8799.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1042,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.426,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,Memcpy HtoD (Host -> Device),kernel,,us,8780.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_rocm_C::paged_attention,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_rocm_C::paged_attention,kernel,mean,us,20.116,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,_rocm_C::paged_attention,kernel,,us,8045.999999999999,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,6.15,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,6328.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.607,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5769.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.593,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5756.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1032,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,5.472,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5647.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.421,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4549.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::sub,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::sub,kernel,mean,us,4.006,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,aten::sub,kernel,,us,4122.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_5.txt,decode64-exp-profile-traces-warm,exp,profile,, +5,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,11331,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,2.73,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Memcpy DtoD (Device -> Device),kernel,,us,30928.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,16638.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_47(47),kernel,,us,16638.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1042,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,15.579,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Memcpy HtoD (Host -> Device),kernel,,us,16233.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,15.312,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15756.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::div_,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::div_,kernel,mean,us,14.346,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::div_,kernel,,us,14762.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.346,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14762.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,14125.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_31(31),kernel,,us,14125.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,156.939,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12555.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,3.961,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,12227.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_15(15),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_15(15),kernel,mean,us,11739.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_15(15),kernel,,us,11739.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,143.646,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,11492.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,triton_poi_fused_2,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,triton_poi_fused_2,kernel,mean,us,28.641,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,triton_poi_fused_2,kernel,,us,11457.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_2(2),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_2(2),kernel,mean,us,10231.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,execute_context_0(0)_generation_2(2),kernel,,us,10231.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.785,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,10069.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,_compute_slot_mapping_kernel,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,_compute_slot_mapping_kernel,kernel,mean,us,9.589,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,_compute_slot_mapping_kernel,kernel,,us,9867.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::index,kernel,,calls,2061,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::index,kernel,mean,us,6.421,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::index,kernel,,us,8175.000000000001,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,_rocm_C::paged_attention,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,_rocm_C::paged_attention,kernel,mean,us,20.11,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,_rocm_C::paged_attention,kernel,,us,8044.000000000001,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,mean,us,7.313,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,us,7525.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,6.252,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,6433.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,4.88,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,5022.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::add,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::add,kernel,mean,us,1.377,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::add,kernel,,us,4251.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::fill_,kernel,,calls,6179,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::fill_,kernel,mean,us,0.63,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::fill_,kernel,,us,3892.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2053,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,1.876,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,3851.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,3.675,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,3781.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1032,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,3.055,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,3153.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,5,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,627.859,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,3139.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aiter::rms_norm,kernel,,calls,5,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aiter::rms_norm,kernel,mean,us,588.052,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aiter::rms_norm,kernel,,us,2940.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,320,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,8.11,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,2595.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,2.113,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,2174.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,2.018,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,2077.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,240,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,8.043,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,1930.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::sub,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::sub,kernel,mean,us,1.745,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,aten::sub,kernel,,us,1795.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_2.txt,decode64-exp-profile-traces-warm,exp,profile,, +2,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,11331,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,3.443,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Memcpy DtoD (Device -> Device),kernel,,us,39017.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_62(62),kernel,,calls,2,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,18702.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_62(62),kernel,,us,37404.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,16650.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_47(47),kernel,,us,16650.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,15.26,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15702.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::div_,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::div_,kernel,mean,us,14.074,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::div_,kernel,,us,14483.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.074,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14483.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,14243.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_31(31),kernel,,us,14243.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.29,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,13242.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,154.926,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12394.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_15(15),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_15(15),kernel,mean,us,11870.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_15(15),kernel,,us,11870.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,triton_poi_fused_2,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,triton_poi_fused_2,kernel,mean,us,28.401,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,triton_poi_fused_2,kernel,,us,11360.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,141.972,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,11358.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,10.239,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,10536.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_2(2),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_2(2),kernel,mean,us,10389.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,execute_context_0(0)_generation_2(2),kernel,,us,10389.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,_compute_slot_mapping_kernel,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,_compute_slot_mapping_kernel,kernel,mean,us,9.752,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,_compute_slot_mapping_kernel,kernel,,us,10034.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1042,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.861,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,Memcpy HtoD (Host -> Device),kernel,,us,9233.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::index,kernel,,calls,2061,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::index,kernel,mean,us,6.861,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::index,kernel,,us,8865.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,_rocm_C::paged_attention,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,_rocm_C::paged_attention,kernel,mean,us,20.077,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,_rocm_C::paged_attention,kernel,,us,8031.000000000001,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,mean,us,7.538,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,us,7757.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,7.082,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,7288.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::add,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::add,kernel,mean,us,1.872,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::add,kernel,,us,5780.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::fill_,kernel,,calls,6179,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::fill_,kernel,mean,us,0.935,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::fill_,kernel,,us,5776.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2053,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,2.789,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5727.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,4.993,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,5138.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.022,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4139.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1032,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,3.611,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,3727.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,5,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,606.436,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,3032.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aiter::rms_norm,kernel,,calls,5,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aiter::rms_norm,kernel,mean,us,585.395,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aiter::rms_norm,kernel,,us,2927.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,2.816,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,2898.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,2.801,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,2882.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,320,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,8.178,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,2617.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::sub,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::sub,kernel,mean,us,2.354,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,aten::sub,kernel,,us,2422.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_4.txt,decode64-exp-profile-traces-warm,exp,profile,, +4,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,11331,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,5.489,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Memcpy DtoD (Device -> Device),kernel,,us,62193.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::_softmax,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::_softmax,kernel,mean,us,60.188,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::_softmax,kernel,,us,61934.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::(anonymous namespace)::cunn_SoftMax...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::(anonymous namespace)::cunn_SoftMax...,kernel,mean,us,60.188,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::(anonymous namespace)::cunn_SoftMax...,kernel,,us,61934.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_C_cache_ops::reshape_and_cache,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_C_cache_ops::reshape_and_cache,kernel,mean,us,146.469,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_C_cache_ops::reshape_and_cache,kernel,,us,58588.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aiter::top_p_sampling_from_probs,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aiter::top_p_sampling_from_probs,kernel,mean,us,53.741,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aiter::top_p_sampling_from_probs,kernel,,us,55299.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,mean,us,53.741,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,,us,55299.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::mm,kernel,,calls,1027,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::mm,kernel,mean,us,51.219,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::mm,kernel,,us,52602.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,calls,1022,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,mean,us,51.222,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,us,52349.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_62(62),kernel,,calls,2,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,19666.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_62(62),kernel,,us,39333.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.891,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,18184.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,17568.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_47(47),kernel,,us,17568.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,16.298,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,16771.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::div_,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::div_,kernel,mean,us,14.693,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::div_,kernel,,us,15119.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.693,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15119.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,14921.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_31(31),kernel,,us,14921.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_15(15),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_15(15),kernel,mean,us,12674.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_15(15),kernel,,us,12674.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,155.077,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12406.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::index,kernel,,calls,2061,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::index,kernel,mean,us,8.824,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::index,kernel,,us,11802.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::fill_,kernel,,calls,6179,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::fill_,kernel,mean,us,1.908,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::fill_,kernel,,us,11790.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2053,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.694,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,11690.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::add,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::add,kernel,mean,us,3.703,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::add,kernel,,us,11433.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,triton_poi_fused_2,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,triton_poi_fused_2,kernel,mean,us,28.439,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,triton_poi_fused_2,kernel,,us,11376.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,141.967,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,11357.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_compute_slot_mapping_kernel,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.231,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_compute_slot_mapping_kernel,kernel,,us,10527.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_2(2),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_2(2),kernel,mean,us,10475.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,execute_context_0(0)_generation_2(2),kernel,,us,10475.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.576,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9854.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.626,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8876.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,mean,us,8.579,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,us,8828.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1042,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.434,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,Memcpy HtoD (Host -> Device),kernel,,us,8788.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_rocm_C::paged_attention,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_rocm_C::paged_attention,kernel,mean,us,20.163,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,_rocm_C::paged_attention,kernel,,us,8064.999999999999,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,6.053,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,6229.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.587,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5749.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.523,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5683.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1032,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,5.4,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5573.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.419,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4548.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::sub,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::sub,kernel,mean,us,3.935,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,aten::sub,kernel,,us,4049.0000000000005,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_6.txt,decode64-exp-profile-traces-warm,exp,profile,, +6,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,11331,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,5.184,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Memcpy DtoD (Device -> Device),kernel,,us,58735.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_C_cache_ops::reshape_and_cache,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_C_cache_ops::reshape_and_cache,kernel,mean,us,146.378,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_C_cache_ops::reshape_and_cache,kernel,,us,58551.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aiter::top_p_sampling_from_probs,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aiter::top_p_sampling_from_probs,kernel,mean,us,53.276,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aiter::top_p_sampling_from_probs,kernel,,us,54821.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,mean,us,53.276,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,,us,54821.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::mm,kernel,,calls,1027,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::mm,kernel,mean,us,50.92,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::mm,kernel,,us,52295.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,calls,1022,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,mean,us,50.928,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,us,52049.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_62(62),kernel,,calls,2,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,19271.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_62(62),kernel,,us,38541.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,17641.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_47(47),kernel,,us,17641.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.574,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,17208.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,15.852,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,16311.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,14994.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_31(31),kernel,,us,14994.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::div_,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::div_,kernel,mean,us,14.554,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::div_,kernel,,us,14976.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.554,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14976.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_15(15),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_15(15),kernel,mean,us,12957.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_15(15),kernel,,us,12957.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,156.382,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12511.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,144.03,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,11522.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::index,kernel,,calls,2061,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::index,kernel,mean,us,8.66,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::index,kernel,,us,11477.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,triton_poi_fused_2,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,triton_poi_fused_2,kernel,mean,us,28.653,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,triton_poi_fused_2,kernel,,us,11461.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::fill_,kernel,,calls,6179,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::fill_,kernel,mean,us,1.816,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::fill_,kernel,,us,11220.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2053,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.42,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,11126.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::add,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::add,kernel,mean,us,3.533,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::add,kernel,,us,10907.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_2(2),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_2(2),kernel,mean,us,10738.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,execute_context_0(0)_generation_2(2),kernel,,us,10738.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_compute_slot_mapping_kernel,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.235,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_compute_slot_mapping_kernel,kernel,,us,10532.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.65,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9930.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.517,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8764.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1042,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.387,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,Memcpy HtoD (Host -> Device),kernel,,us,8739.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,mean,us,8.421,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,us,8665.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_rocm_C::paged_attention,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_rocm_C::paged_attention,kernel,mean,us,20.052,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,_rocm_C::paged_attention,kernel,,us,8021.000000000001,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,6.113,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,6290.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.327,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5481.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.272,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5425.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1032,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,5.026,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5187.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.342,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4468.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::sub,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::sub,kernel,mean,us,3.705,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,aten::sub,kernel,,us,3812.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_3.txt,decode64-exp-profile-traces-warm,exp,profile,, +3,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,11331,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,5.568,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Memcpy DtoD (Device -> Device),kernel,,us,63086.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::_softmax,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::_softmax,kernel,mean,us,60.255,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::_softmax,kernel,,us,62002.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::(anonymous namespace)::cunn_SoftMax...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::(anonymous namespace)::cunn_SoftMax...,kernel,mean,us,60.255,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::(anonymous namespace)::cunn_SoftMax...,kernel,,us,62002.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_C_cache_ops::reshape_and_cache,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_C_cache_ops::reshape_and_cache,kernel,mean,us,145.501,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_C_cache_ops::reshape_and_cache,kernel,,us,58201.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aiter::top_p_sampling_from_probs,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aiter::top_p_sampling_from_probs,kernel,mean,us,53.461,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aiter::top_p_sampling_from_probs,kernel,,us,55012.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,mean,us,53.461,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void aiter::sampling::TopPSamplingFromProbKernel<102...,kernel,,us,55012.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::mm,kernel,,calls,1027,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::mm,kernel,mean,us,52.564,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::mm,kernel,,us,53983.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,calls,1022,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,mean,us,52.566,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64...,kernel,,us,53723.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_62(62),kernel,,calls,2,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,19806.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_62(62),kernel,,us,39611.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,5.973,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,18440.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,17845.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_47(47),kernel,,us,17845.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,16.256,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,16728.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::div_,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::div_,kernel,mean,us,14.285,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::div_,kernel,,us,14700.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.285,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14700.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,14601.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_31(31),kernel,,us,14601.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_15(15),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_15(15),kernel,mean,us,13038.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_15(15),kernel,,us,13038.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,155.753,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12460.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::index,kernel,,calls,2061,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::index,kernel,mean,us,8.97,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::index,kernel,,us,12002.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::fill_,kernel,,calls,6179,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::fill_,kernel,mean,us,1.895,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::fill_,kernel,,us,11707.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2053,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.654,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,11608.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::add,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::add,kernel,mean,us,3.73,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::add,kernel,,us,11516.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,triton_poi_fused_2,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,triton_poi_fused_2,kernel,mean,us,28.654,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,triton_poi_fused_2,kernel,,us,11462.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,141.561,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,11325.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_2(2),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_2(2),kernel,mean,us,11122.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,execute_context_0(0)_generation_2(2),kernel,,us,11122.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_compute_slot_mapping_kernel,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_compute_slot_mapping_kernel,kernel,mean,us,10.273,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_compute_slot_mapping_kernel,kernel,,us,10571.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.671,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9951.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1042,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.922,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,Memcpy HtoD (Host -> Device),kernel,,us,9297.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,mean,us,8.615,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,us,8865.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,8.591,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,8840.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_rocm_C::paged_attention,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_rocm_C::paged_attention,kernel,mean,us,20.267,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,_rocm_C::paged_attention,kernel,,us,8106.999999999999,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,6.205,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,6385.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.596,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5758.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,5.595,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,5758.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1032,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,5.443,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,5617.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.469,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4599.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::sub,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::sub,kernel,mean,us,4.021,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,aten::sub,kernel,,us,4137.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_7.txt,decode64-exp-profile-traces-warm,exp,profile,, +7,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,11331,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,3.608,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Memcpy DtoD (Device -> Device),kernel,,us,40878.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_62(62),kernel,,calls,2,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_62(62),kernel,mean,us,18701.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_62(62),kernel,,us,37401.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,16690.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_47(47),kernel,,us,16690.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,15.346,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15791.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::div_,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::div_,kernel,mean,us,14.373,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::div_,kernel,,us,14790.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,14.373,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14790.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,14152.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_31(31),kernel,,us,14152.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.362,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,13464.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,155.357,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12429.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_15(15),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_15(15),kernel,mean,us,11778.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_15(15),kernel,,us,11778.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,143.53,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,11482.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,triton_poi_fused_2,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,triton_poi_fused_2,kernel,mean,us,28.228,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,triton_poi_fused_2,kernel,,us,11291.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_2(2),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_2(2),kernel,mean,us,10773.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,execute_context_0(0)_generation_2(2),kernel,,us,10773.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.929,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,10217.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,_compute_slot_mapping_kernel,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,_compute_slot_mapping_kernel,kernel,mean,us,9.792,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,_compute_slot_mapping_kernel,kernel,,us,10076.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1042,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.826,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,Memcpy HtoD (Host -> Device),kernel,,us,9197.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::index,kernel,,calls,2061,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::index,kernel,mean,us,6.818,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::index,kernel,,us,8819.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,_rocm_C::paged_attention,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,_rocm_C::paged_attention,kernel,mean,us,19.905,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,_rocm_C::paged_attention,kernel,,us,7962.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,mean,us,7.68,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,us,7903.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,7.414,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,7629.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::fill_,kernel,,calls,6179,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::fill_,kernel,mean,us,1.046,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::fill_,kernel,,us,6466.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2053,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,3.126,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,6418.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::add,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::add,kernel,mean,us,2.039,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::add,kernel,,us,6294.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,4.896,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,5038.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.097,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4216.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1032,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,3.664,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,3781.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,5,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,678.093,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,3390.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,3.079,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,3168.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,3.037,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,3125.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aiter::rms_norm,kernel,,calls,5,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aiter::rms_norm,kernel,mean,us,589.012,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aiter::rms_norm,kernel,,us,2945.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,320,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,8.383,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,2683.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::sub,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::sub,kernel,mean,us,2.417,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,aten::sub,kernel,,us,2487.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_0.txt,decode64-exp-profile-traces-warm,exp,profile,, +0,,,,void at::native::unrolled_elementwise_kernel Device),kernel,,calls,11331,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Memcpy DtoD (Device -> Device),kernel,mean,us,2.647,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Memcpy DtoD (Device -> Device),kernel,,us,29991.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_47(47),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_47(47),kernel,mean,us,16616.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_47(47),kernel,,us,16616.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,15.302,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,15746.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::div_,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::div_,kernel,mean,us,13.993,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::div_,kernel,,us,14399.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,13.993,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,14399.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_31(31),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_31(31),kernel,mean,us,14069.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_31(31),kernel,,us,14069.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,155.911,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,12473.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,4.001,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,12352.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_15(15),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_15(15),kernel,mean,us,11695.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_15(15),kernel,,us,11695.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,80,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,143.595,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,11488.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,triton_poi_fused_2,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,triton_poi_fused_2,kernel,mean,us,28.31,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,triton_poi_fused_2,kernel,,us,11324.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_2(2),kernel,,calls,1,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_2(2),kernel,mean,us,10322.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,execute_context_0(0)_generation_2(2),kernel,,us,10322.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,9.632,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,9912.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,_compute_slot_mapping_kernel,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,_compute_slot_mapping_kernel,kernel,mean,us,9.595,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,_compute_slot_mapping_kernel,kernel,,us,9874.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Memcpy HtoD (Host -> Device),kernel,,calls,1042,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Memcpy HtoD (Host -> Device),kernel,mean,us,8.496,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Memcpy HtoD (Host -> Device),kernel,,us,8852.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::index,kernel,,calls,2061,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::index,kernel,mean,us,6.459,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::index,kernel,,us,8173.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,_rocm_C::paged_attention,kernel,,calls,400,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,_rocm_C::paged_attention,kernel,mean,us,19.852,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,_rocm_C::paged_attention,kernel,,us,7941.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,mean,us,7.205,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnor...,kernel,,us,7414.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,6.379,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,6564.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,mean,us,4.685,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_gather_kernel<16, long>(...",kernel,,us,4821.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::add,kernel,,calls,3087,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::add,kernel,mean,us,1.384,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::add,kernel,,us,4273.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,mean,us,3.932,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::elementwise_kernel_manual_unroll<12...,kernel,,us,4046.0000000000005,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::fill_,kernel,,calls,6179,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::fill_,kernel,mean,us,0.653,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::fill_,kernel,,us,4035.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,2053,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,1.945,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,3992.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,calls,1032,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,mean,us,3.248,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::index_elementwise_kernel<128, 4, at...",kernel,,us,3352.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,calls,5,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,mean,us,634.531,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise...,kernel,,us,3173.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aiter::rms_norm,kernel,,calls,5,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aiter::rms_norm,kernel,mean,us,585.796,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aiter::rms_norm,kernel,,us,2929.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,calls,320,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,mean,us,8.207,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e...",kernel,,us,2626.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,2.086,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,2146.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,mean,us,2.067,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,"void at::native::vectorized_elementwise_kernel<4, at...",kernel,,us,2127.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,calls,240,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,mean,us,8.042,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT...,kernel,,us,1930.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::sub,kernel,,calls,1029,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::sub,kernel,mean,us,1.844,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,aten::sub,kernel,,us,1897.0,parse_profile,./data/decode64-exp-profile-traces-warm/profile/summary/profiler_out_1.txt,decode64-exp-profile-traces-warm,exp,profile,, +1,,,,void at::native::unrolled_elementwise_kernel,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,/usr/local/bin/vllm(6): ,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,73.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,516,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,18.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,2334.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,66648,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,13.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,49.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,147133.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,131733,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,58.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,828,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,35.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,207,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,16.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,370,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,28.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,258,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,213,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,331.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,2035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,922.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,2702,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,24.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,923.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,5317,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,487.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,2135,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,17.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,72.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1735,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,31184.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,647689,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,23.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,270,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,18548.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,463737,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,45.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,2884.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,323,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,56.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,33.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,30.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,26.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,203,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,92.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,57.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,43.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,633.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,6491,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,88.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,18.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,137,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,5706.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,150275,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,587.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1624,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,76.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,138,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,23.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,148,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,185.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,164.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1563,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,334.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,53.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,456,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,3620.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,68850,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,9663.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,133631,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,35.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,130,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,186.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,349,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,388,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,127,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,17.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,134,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,15.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,129,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,7462.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,66334,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,20550.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,108.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,967,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,3670.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,68069,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,39.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,474,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,1536.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,13413.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,133925,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,21.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,86,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,21.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,452,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,38.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,409,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,36.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,151,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,211.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,30.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,67,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,109.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,198,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,182.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,87,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,15475.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,206911,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,208,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,23.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,138,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,138,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,17.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,164.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1367,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,5527.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,65797,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,21.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,195,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,51.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,681,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,132.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1554,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,141.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,130,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,500.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,3039,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,141,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,757.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,3225,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,76.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,12.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,148,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,12.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,3820.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,65620,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,23.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,333,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,13.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,258,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,45.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,222,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,15.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,119.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,816,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,14754.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,68476,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,29.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,57.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,330,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,19.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,193,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,526.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1162,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,257148.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,16.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,256,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,330.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,32,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,83671.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,27.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,219.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1010,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,17.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,329.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,41058.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,131200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,21.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,263,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,,track_slice,,calls,148,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(341): __subclasshook__,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(341): __subclasshook__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(469): __new__,track_slice,,us,84.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(469): __new__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(511): _is_param_expr,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(511): _is_param_expr,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(804): get,track_slice,,us,17542.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(804): get,track_slice,,calls,67353,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(117): __instancecheck__,track_slice,,us,113.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(117): __instancecheck__,track_slice,,calls,516,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(121): __subclasscheck__,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(121): __subclasscheck__,track_slice,,calls,66,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(260): __init__,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(260): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(309): __init__,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(309): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(319): decode,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(319): decode,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(133): _splitext,track_slice,,us,49.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(133): _splitext,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(16): exists,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(16): exists,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(1390): _handle_fromlist,track_slice,,us,1747.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(1390): _handle_fromlist,track_slice,,calls,1161,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(645): parent,track_slice,,us,22.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(645): parent,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(709): __getitem__,track_slice,,us,28268.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(709): __getitem__,track_slice,,calls,66834,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(791): encode,track_slice,,us,15212.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(791): encode,track_slice,,calls,66834,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(808): getenv,track_slice,,us,10614.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(808): getenv,track_slice,,calls,66770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(117): splitext,track_slice,,us,61.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(117): splitext,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(169): basename,track_slice,,us,59.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(169): basename,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(41): _get_sep,track_slice,,us,13.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(41): _get_sep,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(52): normcase,track_slice,,us,28.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(52): normcase,track_slice,,calls,222,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(1): ,track_slice,,us,760.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(1): ,track_slice,,calls,1097,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(2): __init__,track_slice,,us,9808.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,(2): __init__,track_slice,,calls,68002,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(17): __init__,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(17): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(21): __enter__,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(27): __exit__,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(39): _remove,track_slice,,us,194.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(39): _remove,track_slice,,calls,775,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(63): __iter__,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(70): __iter__,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(70): __iter__,track_slice,,calls,11,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(72): __len__,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(72): __len__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(85): add,track_slice,,us,260.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,_weakrefset.py(85): add,track_slice,,calls,776,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1968): __new__,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1968): __new__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1971): __init__,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1971): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1976): __aenter__,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1976): __aenter__,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1977): __aenter__,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1977): __aenter__,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1979): __aexit__,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1979): __aexit__,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1991): total_tokens,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(1991): total_tokens,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2016): _notify_next_waiter,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2016): _notify_next_waiter,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2025): acquire_on_behalf_of_nowait,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2025): acquire_on_behalf_of_nowait,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2036): acquire,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2036): acquire,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2037): acquire,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2037): acquire,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2039): acquire_on_behalf_of,track_slice,,us,22.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2039): acquire_on_behalf_of,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2058): acquire_on_behalf_of,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2058): acquire_on_behalf_of,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2063): release,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2063): release,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2066): release_on_behalf_of,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2066): release_on_behalf_of,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2360): current_token,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2360): current_token,track_slice,,calls,19,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2364): current_time,track_slice,,us,17.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2364): current_time,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2372): checkpoint,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2372): checkpoint,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2374): checkpoint,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2374): checkpoint,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2376): checkpoint_if_cancelled,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2376): checkpoint_if_cancelled,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2395): cancel_shielded_checkpoint,track_slice,,us,33.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2395): cancel_shielded_checkpoint,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2398): cancel_shielded_checkpoint,track_slice,,us,13.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2398): cancel_shielded_checkpoint,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2433): create_task_group,track_slice,,us,17.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2433): create_task_group,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2459): run_sync_in_worker_thread,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2459): run_sync_in_worker_thread,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2467): run_sync_in_worker_thread,track_slice,,us,39.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2467): run_sync_in_worker_thread,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2480): run_sync_in_worker_thread,track_slice,,us,123.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2480): run_sync_in_worker_thread,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2518): run_sync_in_worker_thread,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2518): run_sync_in_worker_thread,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2952): current_default_thread_limiter,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(2952): current_default_thread_limiter,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(308): find_root_task,track_slice,,us,20.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(308): find_root_task,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(339): get_callable_name,track_slice,,us,29.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(339): get_callable_name,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(352): _task_started,track_slice,,us,25.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(352): _task_started,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(370): is_anyio_cancellation,track_slice,,us,21.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(370): is_anyio_cancellation,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(390): __new__,track_slice,,us,21.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(390): __new__,track_slice,,calls,136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(395): __init__,track_slice,,us,47.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(395): __init__,track_slice,,calls,136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(413): __enter__,track_slice,,us,240.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(413): __enter__,track_slice,,calls,136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(444): __exit__,track_slice,,us,305.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(444): __exit__,track_slice,,calls,136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(556): _parent_cancellation_is_visible_to_us,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(556): _parent_cancellation_is_visible_to_us,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(564): _timeout,track_slice,,us,14.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(564): _timeout,track_slice,,calls,136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(572): _deliver_cancellation,track_slice,,us,262.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(572): _deliver_cancellation,track_slice,,calls,256,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(618): _restart_cancellation_in_parent,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(618): _restart_cancellation_in_parent,track_slice,,calls,136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(637): cancel,track_slice,,us,107.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(637): cancel,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(668): cancel_called,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(668): cancel_called,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(680): shield,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(680): shield,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(701): __init__,track_slice,,us,8.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(701): __init__,track_slice,,calls,132,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(739): __init__,track_slice,,us,32.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(739): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(746): __aenter__,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(746): __aenter__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(751): __aexit__,track_slice,,us,74.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(751): __aexit__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(771): __aexit__,track_slice,,us,138.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(771): __aexit__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(814): _spawn,track_slice,,us,227.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(814): _spawn,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(821): task_done,track_slice,,us,107.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(821): task_done,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(914): start_soon,track_slice,,us,17.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(914): start_soon,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(953): __init__,track_slice,,us,15.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(953): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(970): _report_result,track_slice,,us,22.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_backends/_asyncio.py(970): _report_result,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(185): get_async_backend,track_slice,,us,37.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(185): get_async_backend,track_slice,,calls,87,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(205): current_async_library,track_slice,,us,30.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(205): current_async_library,track_slice,,calls,87,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(224): set_current_async_library,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_core/_eventloop.py(224): set_current_async_library,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_core/_tasks.py(164): create_task_group,track_slice,,us,24.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/_core/_tasks.py(164): create_task_group,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(107): __init__,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(107): __init__,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(142): _current_vars,track_slice,,us,27.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(142): _current_vars,track_slice,,calls,19,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(157): get,track_slice,,us,17.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(157): get,track_slice,,calls,15,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(172): set,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(172): set,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(81): current_token,track_slice,,us,39.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/lowlevel.py(81): current_token,track_slice,,calls,19,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/to_thread.py(25): run_sync,track_slice,,us,24.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/to_thread.py(25): run_sync,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/to_thread.py(63): run_sync,track_slice,,us,15.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,anyio/to_thread.py(63): run_sync,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_futures.py(13): isfuture,track_slice,,us,52.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_futures.py(13): isfuture,track_slice,,calls,282,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_futures.py(24): _format_callbacks,track_slice,,us,31.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_futures.py(24): _format_callbacks,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_futures.py(30): format_cb,track_slice,,us,16.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_futures.py(30): format_cb,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_futures.py(44): _future_repr_info,track_slice,,us,68.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_futures.py(44): _future_repr_info,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_tasks.py(28): _task_repr,track_slice,,us,33.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_tasks.py(28): _task_repr,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_tasks.py(9): _task_repr_info,track_slice,,us,98.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/base_tasks.py(9): _task_repr_info,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/coroutines.py(20): iscoroutinefunction,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/coroutines.py(20): iscoroutinefunction,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/coroutines.py(32): iscoroutine,track_slice,,us,96.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/coroutines.py(32): iscoroutine,track_slice,,calls,454,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/coroutines.py(48): _format_coroutine,track_slice,,us,83.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/coroutines.py(48): _format_coroutine,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/coroutines.py(51): get_name,track_slice,,us,13.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/coroutines.py(51): get_name,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/format_helpers.py(10): _get_function_source,track_slice,,us,38.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/format_helpers.py(10): _get_function_source,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/format_helpers.py(22): _format_callback_source,track_slice,,us,39.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/format_helpers.py(22): _format_callback_source,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/format_helpers.py(30): _format_args_and_kwargs,track_slice,,us,22.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/format_helpers.py(30): _format_args_and_kwargs,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/format_helpers.py(44): _format_callback,track_slice,,us,43.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/format_helpers.py(44): _format_callback,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(301): _get_loop,track_slice,,us,39.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(301): _get_loop,track_slice,,calls,208,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(313): _set_result_unless_cancelled,track_slice,,us,629.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(313): _set_result_unless_cancelled,track_slice,,calls,337,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(347): _copy_future_state,track_slice,,us,56.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(347): _copy_future_state,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(367): _chain_future,track_slice,,us,19.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(367): _chain_future,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(383): _set_state,track_slice,,us,58.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(383): _set_state,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(389): _call_check_cancel,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(389): _call_check_cancel,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(411): wrap_future,track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/futures.py(411): wrap_future,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(166): __init__,track_slice,,us,50.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(166): __init__,track_slice,,calls,133,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(181): set,track_slice,,us,24678.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(181): set,track_slice,,calls,65690,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(193): clear,track_slice,,us,2641.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(193): clear,track_slice,,calls,66710,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(199): wait,track_slice,,us,27805.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(199): wait,track_slice,,calls,65678,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(212): wait,track_slice,,us,15715.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/locks.py(212): wait,track_slice,,calls,65614,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/mixins.py(12): _get_loop,track_slice,,us,8402.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/mixins.py(12): _get_loop,track_slice,,calls,66648,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(110): put,track_slice,,us,20.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(110): put,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(137): put_nowait,track_slice,,us,2591.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(137): put_nowait,track_slice,,calls,1096,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(149): get,track_slice,,us,1467.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(149): get,track_slice,,calls,1098,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(158): get,track_slice,,us,1772.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(158): get,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(175): get_nowait,track_slice,,us,1227.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(175): get_nowait,track_slice,,calls,1096,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(50): _get,track_slice,,us,412.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(50): _get,track_slice,,calls,1096,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(53): _put,track_slice,,us,440.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(53): _put,track_slice,,calls,1096,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(58): _wakeup_next,track_slice,,us,1336.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(58): _wakeup_next,track_slice,,calls,2192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(95): empty,track_slice,,us,423.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(95): empty,track_slice,,calls,3228,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(99): full,track_slice,,us,231.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/queues.py(99): full,track_slice,,calls,1160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/runners.py(118): run,track_slice,,us,30111536.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/runners.py(118): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/runners.py(195): run,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/runners.py(195): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(412): create_task,track_slice,,us,209.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(412): create_task,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(43): all_tasks,track_slice,,us,28.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(43): all_tasks,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(435): wait,track_slice,,us,144.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(435): wait,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(460): ,track_slice,,us,30.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(460): ,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(464): wait,track_slice,,us,47.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(464): wait,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(472): wait_for,track_slice,,us,74.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(472): wait_for,track_slice,,calls,63,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(520): wait_for,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(520): wait_for,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(522): _wait,track_slice,,us,123.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(522): _wait,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(534): _on_completion,track_slice,,us,25.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(534): _on_completion,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(550): _wait,track_slice,,us,117.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(550): _wait,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(641): __sleep0,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(641): __sleep0,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(650): __sleep0,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(650): __sleep0,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(653): sleep,track_slice,,us,2179.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(653): sleep,track_slice,,calls,345,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(656): sleep,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(656): sleep,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(665): sleep,track_slice,,us,460.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(665): sleep,track_slice,,calls,337,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(670): ensure_future,track_slice,,us,307.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(670): ensure_future,track_slice,,calls,194,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(70): _set_task_name,track_slice,,us,15.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(70): _set_task_name,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(710): __init__,track_slice,,us,77.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(710): __init__,track_slice,,calls,193,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(731): gather,track_slice,,us,435.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(731): gather,track_slice,,calls,258,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(767): _done_callback,track_slice,,us,332.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/tasks.py(767): _done_callback,track_slice,,calls,194,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/threads.py(12): to_thread,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/threads.py(12): to_thread,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/threads.py(25): to_thread,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/threads.py(25): to_thread,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(121): _on_timeout,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(121): _on_timeout,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(129): timeout,track_slice,,us,31.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(129): timeout,track_slice,,calls,63,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(33): __init__,track_slice,,us,6.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(33): __init__,track_slice,,calls,63,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(50): reschedule,track_slice,,us,111.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(50): reschedule,track_slice,,calls,63,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(85): __aenter__,track_slice,,us,42.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(85): __aenter__,track_slice,,calls,63,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(97): __aexit__,track_slice,,us,31.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,asyncio/timeouts.py(97): __aexit__,track_slice,,calls,63,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,collections/__init__.py(447): _make,track_slice,,us,46.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,collections/__init__.py(447): _make,track_slice,,calls,188,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(328): __init__,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(328): __init__,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(383): cancelled,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(383): cancelled,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(393): done,track_slice,,us,24.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(393): done,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(398): __get_result,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(398): __get_result,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(408): add_done_callback,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(408): add_done_callback,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(428): result,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(428): result,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(463): exception,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/_base.py(463): exception,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/thread.py(165): submit,track_slice,,us,35.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/thread.py(165): submit,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/thread.py(184): _adjust_thread_count,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/thread.py(184): _adjust_thread_count,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/thread.py(48): __init__,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,concurrent/futures/thread.py(48): __init__,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(104): __init__,track_slice,,us,67.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(104): __init__,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(132): __enter__,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(132): __enter__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(141): __exit__,track_slice,,us,19.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(141): __exit__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(205): __aenter__,track_slice,,us,30.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(205): __aenter__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(214): __aexit__,track_slice,,us,33.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(214): __aexit__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(217): __aexit__,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(217): __aexit__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(299): helper,track_slice,,us,24.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(299): helper,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(332): helper,track_slice,,us,19.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(332): helper,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(481): __init__,track_slice,,us,74.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(481): __init__,track_slice,,calls,207,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(704): __aenter__,track_slice,,us,41.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(704): __aenter__,track_slice,,calls,207,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(707): __aexit__,track_slice,,us,76.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,contextlib.py(707): __aexit__,track_slice,,calls,207,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(118): deepcopy,track_slice,,us,506.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(118): deepcopy,track_slice,,calls,832,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(172): _deepcopy_atomic,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(172): _deepcopy_atomic,track_slice,,calls,640,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(191): _deepcopy_list,track_slice,,us,32.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(191): _deepcopy_list,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(217): _deepcopy_dict,track_slice,,us,340.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(217): _deepcopy_dict,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(231): _keep_alive,track_slice,,us,106.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(231): _keep_alive,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(247): _reconstruct,track_slice,,us,124.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(247): _reconstruct,track_slice,,calls,138,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(61): copy,track_slice,,us,315.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copy.py(61): copy,track_slice,,calls,202,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copyreg.py(98): __newobj__,track_slice,,us,1446.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,copyreg.py(98): __newobj__,track_slice,,calls,138,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/_policybase.py(209): header_max_count,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/_policybase.py(209): header_max_count,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/_policybase.py(289): _sanitize_header,track_slice,,us,35.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/_policybase.py(289): _sanitize_header,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/_policybase.py(313): header_store_parse,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/_policybase.py(313): header_store_parse,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/_policybase.py(319): header_fetch_parse,track_slice,,us,24.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/_policybase.py(319): header_fetch_parse,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(156): __init__,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(156): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(29): _splitparam,track_slice,,us,48.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(29): _splitparam,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(431): __setitem__,track_slice,,us,54.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(431): __setitem__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(504): get,track_slice,,us,60.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(504): get,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(606): get_content_type,track_slice,,us,98.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(606): get_content_type,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(630): get_content_maintype,track_slice,,us,26.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(630): get_content_maintype,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(639): get_content_subtype,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/message.py(639): get_content_subtype,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/utils.py(233): _format_timetuple_and_zone,track_slice,,us,208.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/utils.py(233): _format_timetuple_and_zone,track_slice,,calls,32,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/utils.py(242): formatdate,track_slice,,us,148.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/utils.py(242): formatdate,track_slice,,calls,32,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/utils.py(271): format_datetime,track_slice,,us,118.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/utils.py(271): format_datetime,track_slice,,calls,32,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/utils.py(52): _has_surrogates,track_slice,,us,16.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,email/utils.py(52): _has_surrogates,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1128): __new__,track_slice,,us,4372.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1128): __new__,track_slice,,calls,16772,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1291): value,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1291): value,track_slice,,calls,129,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1543): _get_value,track_slice,,us,11840.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1543): _get_value,track_slice,,calls,32560,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1550): __or__,track_slice,,us,4087.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1550): __or__,track_slice,,calls,2258,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1561): __and__,track_slice,,us,16497.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1561): __and__,track_slice,,calls,8252,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1583): __invert__,track_slice,,us,717.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(1583): __invert__,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(202): __get__,track_slice,,us,35.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(202): __get__,track_slice,,calls,129,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(720): __call__,track_slice,,us,8704.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,enum.py(720): __call__,track_slice,,calls,16772,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/_compat/shared.py(47): lenient_issubclass,track_slice,,us,18.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/_compat/shared.py(47): lenient_issubclass,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/_compat/v2.py(173): validate,track_slice,,us,31.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/_compat/v2.py(173): validate,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/applications.py(1156): __call__,track_slice,,us,63.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/applications.py(1156): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/applications.py(1159): __call__,track_slice,,us,66.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/applications.py(1159): __call__,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(598): solve_dependencies,track_slice,,us,1857.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(598): solve_dependencies,track_slice,,calls,133,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(738): _validate_value_with_model_field,track_slice,,us,21.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(738): _validate_value_with_model_field,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(784): request_params_to_args,track_slice,,us,42.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(784): request_params_to_args,track_slice,,calls,532,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(955): request_body_to_args,track_slice,,us,95.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/dependencies/utils.py(955): request_body_to_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/middleware/asyncexitstack.py(15): __call__,track_slice,,us,118.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/middleware/asyncexitstack.py(15): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/middleware/asyncexitstack.py(18): __call__,track_slice,,us,96.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/middleware/asyncexitstack.py(18): __call__,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(110): app,track_slice,,us,122.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(110): app,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(113): app,track_slice,,us,181.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(113): app,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(120): app,track_slice,,us,360.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(120): app,track_slice,,calls,91,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(121): app,track_slice,,us,82.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(121): app,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(134): app,track_slice,,us,64.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(134): app,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(254): _extract_endpoint_context,track_slice,,us,44.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(254): _extract_endpoint_context,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(320): run_endpoint_function,track_slice,,us,72.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(320): run_endpoint_function,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(328): run_endpoint_function,track_slice,,us,70.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(328): run_endpoint_function,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(330): run_endpoint_function,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(330): run_endpoint_function,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(382): app,track_slice,,us,690.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(382): app,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(409): app,track_slice,,us,145.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(409): app,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(674): app,track_slice,,us,175.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(674): app,track_slice,,calls,77,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(998): matches,track_slice,,us,646.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,fastapi/routing.py(998): matches,track_slice,,calls,2348,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,functools.py(424): _unwrap_partial,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,functools.py(424): _unwrap_partial,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1070): findsource,track_slice,,us,42.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1070): findsource,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1187): __init__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1187): __init__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1196): tokeneater,track_slice,,us,31.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1196): tokeneater,track_slice,,calls,188,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1239): getblock,track_slice,,us,166.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1239): getblock,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1258): getsourcelines,track_slice,,us,30.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1258): getsourcelines,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1944): getcoroutinestate,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(1944): getcoroutinestate,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(2164): _signature_is_functionlike,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(2164): _signature_is_functionlike,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(298): ismodule,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(298): ismodule,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(302): isclass,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(302): isclass,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(306): ismethod,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(306): ismethod,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(378): isfunction,track_slice,,us,12.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(378): isfunction,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(391): _has_code_flag,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(391): _has_code_flag,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(412): _has_coroutine_mark,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(412): _has_coroutine_mark,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(427): iscoroutinefunction,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(427): iscoroutinefunction,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(464): iscoroutine,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(464): iscoroutine,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(475): istraceback,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(475): istraceback,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(485): isframe,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(485): isframe,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(499): iscode,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(499): iscode,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(754): unwrap,track_slice,,us,41.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(754): unwrap,track_slice,,calls,66,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(911): getfile,track_slice,,us,31.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(911): getfile,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(951): getsourcefile,track_slice,,us,33.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(951): getsourcefile,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(958): ,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(958): ,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(961): ,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(961): ,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(988): getmodule,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,inspect.py(988): getmodule,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(1187): _ip_int_from_string,track_slice,,us,89.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(1187): _ip_int_from_string,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(1213): _parse_octet,track_slice,,us,169.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(1213): _parse_octet,track_slice,,calls,276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(1286): __init__,track_slice,,us,94.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(1286): __init__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(28): ip_address,track_slice,,us,45.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(28): ip_address,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(577): __eq__,track_slice,,us,22.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(577): __eq__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(612): __hash__,track_slice,,us,32.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ipaddress.py(612): __hash__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,json/__init__.py(244): detect_encoding,track_slice,,us,52.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,json/__init__.py(244): detect_encoding,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,json/__init__.py(299): loads,track_slice,,us,95.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,json/__init__.py(299): loads,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,json/decoder.py(333): decode,track_slice,,us,81.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,json/decoder.py(333): decode,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,json/decoder.py(344): raw_decode,track_slice,,us,7072.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,json/decoder.py(344): raw_decode,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,linecache.py(36): getlines,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,linecache.py(36): getlines,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,linecache.py(52): checkcache,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,linecache.py(52): checkcache,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,linecache.py(83): updatecache,track_slice,,us,15.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,linecache.py(83): updatecache,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1011): handle,track_slice,,us,90.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1011): handle,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1137): flush,track_slice,,us,61.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1137): flush,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1148): emit,track_slice,,us,100.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1148): emit,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,17.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1529): info,track_slice,,us,106.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1529): info,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,138.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,80.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1660): _log,track_slice,,us,118.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1660): _log,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1686): handle,track_slice,,us,63.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1686): handle,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(170): ,track_slice,,us,18.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(170): ,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,74.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,18.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,102.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,222,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(298): __init__,track_slice,,us,614.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(298): __init__,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(383): getMessage,track_slice,,us,73.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(447): usesTime,track_slice,,us,27.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(455): _format,track_slice,,us,62.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(455): _format,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(462): format,track_slice,,us,28.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(462): format,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(622): formatTime,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(622): formatTime,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(668): usesTime,track_slice,,us,27.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,20.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(690): format,track_slice,,us,109.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(690): format,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(831): filter,track_slice,,us,27.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(831): filter,track_slice,,calls,148,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(968): acquire,track_slice,,us,38.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(968): acquire,track_slice,,calls,148,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(975): release,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(975): release,track_slice,,calls,148,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(988): format,track_slice,,us,39.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,logging/__init__.py(988): format,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,multiprocessing/process.py(189): name,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,multiprocessing/process.py(189): name,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(102): __init__,track_slice,,us,21.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(102): __init__,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(138): labels,track_slice,,us,530.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(138): labels,track_slice,,calls,260,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(180): ,track_slice,,us,54.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(180): ,track_slice,,calls,715,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(25): _build_full_name,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(25): _build_full_name,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(330): _metric_init,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(330): _metric_init,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(335): inc,track_slice,,us,2566.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(335): inc,track_slice,,calls,9396,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(458): set,track_slice,,us,2720.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(458): set,track_slice,,calls,5160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(538): _metric_init,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(538): _metric_init,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(544): observe,track_slice,,us,56.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(544): observe,track_slice,,calls,130,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(614): __init__,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(614): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(638): _prepare_buckets,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(638): _prepare_buckets,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(650): _metric_init,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(650): _metric_init,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(665): observe,track_slice,,us,34020.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(665): observe,track_slice,,calls,67463,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(67): _is_observable,track_slice,,us,5052.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(67): _is_observable,track_slice,,calls,82153,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(73): _raise_if_not_observable,track_slice,,us,9977.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(73): _raise_if_not_observable,track_slice,,calls,82149,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(80): _is_parent,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/metrics.py(80): _is_parent,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/utils.py(9): floatToGoString,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/utils.py(9): floatToGoString,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/validation.py(103): _validate_labelnames,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/validation.py(103): _validate_labelnames,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/validation.py(17): get_legacy_validation,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/validation.py(17): get_legacy_validation,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/validation.py(34): _validate_metric_name,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/validation.py(34): _validate_metric_name,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/validation.py(75): _validate_labelname,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/validation.py(75): _validate_labelname,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/values.py(13): __init__,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/values.py(13): __init__,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/values.py(18): inc,track_slice,,us,26057.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/values.py(18): inc,track_slice,,calls,144582,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/values.py(22): set,track_slice,,us,1360.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_client/values.py(22): set,track_slice,,calls,5160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(22): __init__,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(22): __init__,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(601): _map_label_name_value,track_slice,,us,96.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(601): _map_label_name_value,track_slice,,calls,260,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(779): instrumentation,track_slice,,us,646.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/metrics.py(779): instrumentation,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(124): __call__,track_slice,,us,230.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(124): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(150): ,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(150): ,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(165): send_wrapper,track_slice,,us,13925.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(165): send_wrapper,track_slice,,calls,65738,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(174): __call__,track_slice,,us,522.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(174): __call__,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(229): _get_handler,track_slice,,us,35.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(229): _get_handler,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(243): _is_handler_excluded,track_slice,,us,50.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(243): _is_handler_excluded,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(257): ,track_slice,,us,57.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/middleware.py(257): ,track_slice,,calls,463,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/routing.py(47): _get_route_name,track_slice,,us,431.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/routing.py(47): _get_route_name,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/routing.py(69): get_route_name,track_slice,,us,74.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,prometheus_fastapi_instrumentator/routing.py(69): get_route_name,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/_internal/_fields.py(705): resolve_default_value,track_slice,,us,70.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/_internal/_fields.py(705): resolve_default_value,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/_internal/_model_construction.py(285): __getattr__,track_slice,,us,29.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/_internal/_model_construction.py(285): __getattr__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/_internal/_model_construction.py(364): init_private_attributes,track_slice,,us,95.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/_internal/_model_construction.py(364): init_private_attributes,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/_internal/_utils.py(336): smart_deepcopy,track_slice,,us,32.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/_internal/_utils.py(336): smart_deepcopy,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/fields.py(1432): __getattr__,track_slice,,us,91.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/fields.py(1432): __getattr__,track_slice,,calls,256,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/fields.py(1450): default_factory_takes_validated_data,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/fields.py(1450): default_factory_takes_validated_data,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/fields.py(1467): get_default,track_slice,,us,25.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/fields.py(1467): get_default,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(1015): __getattr__,track_slice,,us,144.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(1015): __getattr__,track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(1044): __setattr__,track_slice,,us,34.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(1044): __setattr__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(253): __init__,track_slice,,us,20038.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(253): __init__,track_slice,,calls,131136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(493): model_dump_json,track_slice,,us,22480.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(493): model_dump_json,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(95): _model_field_setattr_handler,track_slice,,us,22.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/main.py(95): _model_field_setattr_handler,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/type_adapter.py(398): validate_python,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,pydantic/type_adapter.py(398): validate_python,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(122): put,track_slice,,us,122.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(122): put,track_slice,,calls,68,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(154): get,track_slice,,us,106.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(154): get,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(185): put_nowait,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(185): put_nowait,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(193): get_nowait,track_slice,,us,15.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(193): get_nowait,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(206): _init,track_slice,,us,16.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(206): _init,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(209): _qsize,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(209): _qsize,track_slice,,calls,68,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(213): _put,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(213): _put,track_slice,,calls,68,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(217): _get,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(217): _get,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(34): __init__,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,queue.py(34): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ray/_private/log.py(75): record_factory,track_slice,,us,128.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,ray/_private/log.py(75): record_factory,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,re/__init__.py(226): compile,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,re/__init__.py(226): compile,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,re/__init__.py(280): _compile,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,re/__init__.py(280): _compile,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,reprlib.py(15): wrapper,track_slice,,us,53.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,reprlib.py(15): wrapper,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,sniffio/_impl.py(25): current_async_library,track_slice,,us,97.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,sniffio/_impl.py(25): current_async_library,track_slice,,calls,87,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_exception_handler.py(23): wrap_app_handling_exceptions,track_slice,,us,40.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_exception_handler.py(23): wrap_app_handling_exceptions,track_slice,,calls,138,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_exception_handler.py(31): wrapped_app,track_slice,,us,210.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_exception_handler.py(31): wrapped_app,track_slice,,calls,138,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_exception_handler.py(34): sender,track_slice,,us,27468.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_exception_handler.py(34): sender,track_slice,,calls,131476,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_exception_handler.py(42): wrapped_app,track_slice,,us,126.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_exception_handler.py(42): wrapped_app,track_slice,,calls,438,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_utils.py(82): create_collapsing_task_group,track_slice,,us,36.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_utils.py(82): create_collapsing_task_group,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_utils.py(85): create_collapsing_task_group,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_utils.py(85): create_collapsing_task_group,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_utils.py(86): create_collapsing_task_group,track_slice,,us,30.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_utils.py(86): create_collapsing_task_group,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_utils.py(96): get_route_path,track_slice,,us,363.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/_utils.py(96): get_route_path,track_slice,,calls,3030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/applications.py(79): routes,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/applications.py(79): routes,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/applications.py(86): __call__,track_slice,,us,53.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/applications.py(86): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/applications.py(90): __call__,track_slice,,us,66.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/applications.py(90): __call__,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/concurrency.py(32): run_in_threadpool,track_slice,,us,28.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/concurrency.py(32): run_in_threadpool,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/concurrency.py(34): run_in_threadpool,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/concurrency.py(34): run_in_threadpool,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(256): __init__,track_slice,,us,33.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(256): __init__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(383): __init__,track_slice,,us,220.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(383): __init__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(505): __init__,track_slice,,us,139.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(505): __init__,track_slice,,calls,402,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(534): items,track_slice,,us,35.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(534): items,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(537): getlist,track_slice,,us,45.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(537): getlist,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(544): __getitem__,track_slice,,us,392.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(544): __getitem__,track_slice,,calls,519,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(551): __contains__,track_slice,,us,38.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(551): __contains__,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(600): __delitem__,track_slice,,us,105.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(600): __delitem__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(673): __init__,track_slice,,us,20.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(673): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(678): __setattr__,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(678): __setattr__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(681): __getattr__,track_slice,,us,8.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/datastructures.py(681): __getattr__,track_slice,,calls,129,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/cors.py(78): __call__,track_slice,,us,178.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/cors.py(78): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/cors.py(88): __call__,track_slice,,us,116.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/cors.py(88): __call__,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/errors.py(149): __call__,track_slice,,us,81.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/errors.py(149): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/errors.py(156): _send,track_slice,,us,15795.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/errors.py(156): _send,track_slice,,calls,65738,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/errors.py(164): __call__,track_slice,,us,82.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/errors.py(164): __call__,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/exceptions.py(47): __call__,track_slice,,us,133.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/exceptions.py(47): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/exceptions.py(63): __call__,track_slice,,us,73.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/middleware/exceptions.py(63): __call__,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(105): app,track_slice,,us,18.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(105): app,track_slice,,calls,198,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(132): headers,track_slice,,us,165.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(132): headers,track_slice,,calls,651,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(138): query_params,track_slice,,us,70.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(138): query_params,track_slice,,calls,133,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(144): path_params,track_slice,,us,25.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(144): path_params,track_slice,,calls,133,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(149): cookies,track_slice,,us,51.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(149): cookies,track_slice,,calls,133,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(188): state,track_slice,,us,63.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(188): state,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(217): __init__,track_slice,,us,107.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(217): __init__,track_slice,,calls,207,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(226): method,track_slice,,us,42.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(226): method,track_slice,,calls,134,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(230): receive,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(230): receive,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(234): stream,track_slice,,us,72.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(234): stream,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(242): stream,track_slice,,us,16.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(242): stream,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(248): stream,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(248): stream,track_slice,,calls,78,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(252): stream,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(252): stream,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(254): body,track_slice,,us,175.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(254): body,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(257): body,track_slice,,us,37.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(257): body,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(262): json,track_slice,,us,64.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(262): json,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(86): __init__,track_slice,,us,21.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(86): __init__,track_slice,,calls,207,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(96): __len__,track_slice,,us,17.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/requests.py(96): __len__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(163): __call__,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(163): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(225): __init__,track_slice,,us,27.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(225): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(242): listen_for_disconnect,track_slice,,us,17.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(242): listen_for_disconnect,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(244): listen_for_disconnect,track_slice,,us,33.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(244): listen_for_disconnect,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(248): stream_response,track_slice,,us,106.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(248): stream_response,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(250): stream_response,track_slice,,us,109958.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(250): stream_response,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(257): __call__,track_slice,,us,179.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(257): __call__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(273): __call__,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(273): __call__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(275): wrap,track_slice,,us,40.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(275): wrap,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(276): wrap,track_slice,,us,9912.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(276): wrap,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(280): __call__,track_slice,,us,88.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(280): __call__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(33): __init__,track_slice,,us,90.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(33): __init__,track_slice,,calls,135,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(48): render,track_slice,,us,20.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(48): render,track_slice,,calls,135,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(55): init_headers,track_slice,,us,361.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(55): init_headers,track_slice,,calls,199,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(83): headers,track_slice,,us,90.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/responses.py(83): headers,track_slice,,calls,199,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(238): matches,track_slice,,us,1008.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(238): matches,track_slice,,calls,2900,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(267): handle,track_slice,,us,50.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(267): handle,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(276): handle,track_slice,,us,78.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(276): handle,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(387): matches,track_slice,,us,74.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(387): matches,track_slice,,calls,130,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(656): __call__,track_slice,,us,38.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(656): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(660): __call__,track_slice,,us,83.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(660): __call__,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(662): app,track_slice,,us,2164.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(662): app,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(680): app,track_slice,,us,90.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,starlette/routing.py(680): app,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(1182): name,track_slice,,us,18.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(1182): name,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(1236): daemon,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(1236): daemon,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(124): RLock,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(124): RLock,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(1356): _make_invoke_excepthook,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(1356): _make_invoke_excepthook,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(1485): current_thread,track_slice,,us,27.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(1485): current_thread,track_slice,,calls,75,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(277): __init__,track_slice,,us,26.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(277): __init__,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(299): __enter__,track_slice,,us,36.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(299): __enter__,track_slice,,calls,157,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(302): __exit__,track_slice,,us,33.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(302): __exit__,track_slice,,calls,157,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(308): _release_save,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(311): _acquire_restore,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(314): _is_owned,track_slice,,us,19.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(314): _is_owned,track_slice,,calls,133,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(323): wait,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(394): notify,track_slice,,us,41.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(394): notify,track_slice,,calls,132,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(468): acquire,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(468): acquire,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(588): __init__,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(588): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(601): is_set,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(601): is_set,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(637): wait,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(637): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(884): __init__,track_slice,,us,17.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(884): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(975): start,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,threading.py(975): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(360): detect_encoding,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(360): detect_encoding,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(384): read_or_stop,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(384): read_or_stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(390): find_cookie,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(390): find_cookie,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(453): open,track_slice,,us,25.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(453): open,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(496): generate_tokens,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(496): generate_tokens,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(577): _generate_tokens_from_c_tokenizer,track_slice,,us,29.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(577): _generate_tokens_from_c_tokenizer,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(585): _generate_tokens_from_c_tokenizer,track_slice,,us,148.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tokenize.py(585): _generate_tokens_from_c_tokenizer,track_slice,,calls,188,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,torch/package/package_importer.py(740): _patched_getfile,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,torch/package/package_importer.py(740): _patched_getfile,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(1289): __getattr__,track_slice,,us,113.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(1289): __getattr__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(1464): convert_tokens_to_ids,track_slice,,us,25.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(1464): convert_tokens_to_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(285): __getattr__,track_slice,,us,25.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,transformers/tokenization_utils_base.py(285): __getattr__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,transformers/tokenization_utils_tokenizers.py(717): _convert_token_to_id_with_added_voc,track_slice,,us,18.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,transformers/tokenization_utils_tokenizers.py(717): _convert_token_to_id_with_added_voc,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tvm/script/parser/core/diagnostics.py(107): _patched_inspect_getfile,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,tvm/script/parser/core/diagnostics.py(107): _patched_inspect_getfile,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,typing.py(1285): __hash__,track_slice,,us,1044.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,typing.py(1285): __hash__,track_slice,,calls,2066,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,typing.py(2187): cast,track_slice,,us,2589.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,typing.py(2187): cast,track_slice,,calls,67100,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,typing.py(392): inner,track_slice,,us,3175.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,typing.py(392): inner,track_slice,,calls,3099,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,urllib/parse.py(757): parse_qsl,track_slice,,us,49.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,urllib/parse.py(757): parse_qsl,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,urllib/parse.py(875): quote,track_slice,,us,55.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,urllib/parse.py(875): quote,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,urllib/parse.py(951): quote_from_bytes,track_slice,,us,73.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,urllib/parse.py(951): quote_from_bytes,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uuid.py(139): __init__,track_slice,,us,297.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uuid.py(139): __init__,track_slice,,calls,129,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uuid.py(674): uuid1,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uuid.py(674): uuid1,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uuid.py(723): uuid4,track_slice,,us,101.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uuid.py(723): uuid4,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/config.py(351): asgi_version,track_slice,,us,26.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/config.py(351): asgi_version,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/logging.py(55): formatMessage,track_slice,,us,93.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/logging.py(55): formatMessage,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/logging.py(82): get_status_code,track_slice,,us,68.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/logging.py(82): get_status_code,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/logging.py(97): formatMessage,track_slice,,us,171.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/logging.py(97): formatMessage,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(146): __contains__,track_slice,,us,103.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(146): __contains__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(27): __call__,track_slice,,us,188.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(27): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(62): __call__,track_slice,,us,97.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/middleware/proxy_headers.py(62): __call__,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/flow_control.py(21): pause_reading,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/flow_control.py(21): pause_reading,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/flow_control.py(26): resume_reading,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/flow_control.py(26): resume_reading,track_slice,,calls,275,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(137): _unset_keepalive_if_required,track_slice,,us,102.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(137): _unset_keepalive_if_required,track_slice,,calls,153,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(169): data_received,track_slice,,us,1174.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(169): data_received,track_slice,,calls,84,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(221): on_message_begin,track_slice,,us,134.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(221): on_message_begin,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(238): on_url,track_slice,,us,12.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(238): on_url,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(241): on_header,track_slice,,us,121.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(241): on_header,track_slice,,calls,470,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(247): on_headers_complete,track_slice,,us,474.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(247): on_headers_complete,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(298): _start_asgi_task,track_slice,,us,221.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(298): _start_asgi_task,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(312): on_body,track_slice,,us,165.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(312): on_body,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(320): on_message_complete,track_slice,,us,26.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(320): on_message_complete,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(326): on_response_complete,track_slice,,us,176.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(326): on_response_complete,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(379): __init__,track_slice,,us,27.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(379): __init__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(419): run_asgi,track_slice,,us,69.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(419): run_asgi,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(421): run_asgi,track_slice,,us,127.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(421): run_asgi,track_slice,,calls,219,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(462): send,track_slice,,us,151025.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(462): send,track_slice,,calls,65738,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(562): receive,track_slice,,us,364.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(562): receive,track_slice,,calls,206,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(569): receive,track_slice,,us,98.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/http/httptools_impl.py(569): receive,track_slice,,calls,142,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/utils.py(51): get_client_addr,track_slice,,us,53.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/utils.py(51): get_client_addr,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/utils.py(58): get_path_with_query_string,track_slice,,us,54.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/protocols/utils.py(58): get_path_with_query_string,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/server.py(238): main_loop,track_slice,,us,1430.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/server.py(238): main_loop,track_slice,,calls,327,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/server.py(241): on_tick,track_slice,,us,607.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/server.py(241): on_tick,track_slice,,calls,327,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/server.py(79): serve,track_slice,,us,444.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/server.py(79): serve,track_slice,,calls,327,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/server.py(96): _serve,track_slice,,us,321.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvicorn/server.py(96): _serve,track_slice,,calls,327,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvloop/__init__.py(96): run,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,uvloop/__init__.py(96): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/config/model.py(1227): get_vocab_size,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/config/model.py(1227): get_vocab_size,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/config/parallel.py(522): local_engines_only,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/config/parallel.py(522): local_engines_only,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/distributed/kv_transfer/kv_connector/v1/metrics.py(93): log,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/distributed/kv_transfer/kv_connector/v1/metrics.py(93): log,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/cli/main.py(95): main,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/cli/main.py(95): main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/cli/serve.py(148): cmd,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/cli/serve.py(148): cmd,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/launcher.py(164): watchdog_loop,track_slice,,us,39.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/launcher.py(164): watchdog_loop,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/launcher.py(168): terminate_if_errored,track_slice,,us,43.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/launcher.py(168): terminate_if_errored,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(30): completion,track_slice,,us,24.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(30): completion,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(34): create_completion,track_slice,,us,56.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(34): create_completion,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(54): create_completion,track_slice,,us,102.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/api_router.py(54): create_completion,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(202): build_tok_params,track_slice,,us,62.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(202): build_tok_params,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(244): to_sampling_params,track_slice,,us,307.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(244): to_sampling_params,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(349): validate_response_format,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(349): validate_response_format,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(380): check_structured_outputs_count,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(380): check_structured_outputs_count,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(408): check_logprobs,track_slice,,us,23.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(408): check_logprobs,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(433): validate_stream_options,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(433): validate_stream_options,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(444): validate_prompt_and_prompt_embeds,track_slice,,us,34.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(444): validate_prompt_and_prompt_embeds,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(463): check_cache_salt_support,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/protocol.py(463): check_cache_salt_support,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(108): render_completion_request,track_slice,,us,61.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(108): render_completion_request,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(110): create_completion,track_slice,,us,33.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(110): create_completion,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(124): create_completion,track_slice,,us,43.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(124): create_completion,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(128): _create_completion,track_slice,,us,23.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(128): _create_completion,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(138): _create_completion,track_slice,,us,653.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(138): _create_completion,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(279): completion_stream_generator,track_slice,,us,97.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(279): completion_stream_generator,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(305): completion_stream_generator,track_slice,,us,341757.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(305): completion_stream_generator,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(436): completion_stream_generator,track_slice,,us,16994.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(436): completion_stream_generator,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(463): completion_stream_generator,track_slice,,us,59.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(463): completion_stream_generator,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(474): completion_stream_generator,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(474): completion_stream_generator,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(85): render_completion_request,track_slice,,us,49.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/completion/serving.py(85): render_completion_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/protocol.py(35): __log_extra_fields__,track_slice,,us,176185.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/protocol.py(35): __log_extra_fields__,track_slice,,calls,196736,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/protocol.py(52): ,track_slice,,us,37685.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/protocol.py(52): ,track_slice,,calls,918016,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(192): _raise_if_error,track_slice,,us,3706.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(192): _raise_if_error,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(211): _check_model,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(211): _check_model,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(264): _maybe_get_adapters,track_slice,,us,30.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(264): _maybe_get_adapters,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(348): _extract_prompt_len,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(348): _extract_prompt_len,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(351): _log_inputs,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(351): _log_inputs,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(372): _get_trace_headers,track_slice,,us,29.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(372): _get_trace_headers,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(386): _base_request_id,track_slice,,us,25.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(386): _base_request_id,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(398): _get_data_parallel_rank,track_slice,,us,18.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(398): _get_data_parallel_rank,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(413): _with_kv_transfer_rejection_cleanup,track_slice,,us,22.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(413): _with_kv_transfer_rejection_cleanup,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(424): _with_kv_transfer_rejection_cleanup,track_slice,,us,54.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(424): _with_kv_transfer_rejection_cleanup,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(467): _is_model_supported,track_slice,,us,102.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/engine/serving.py(467): _is_model_supported,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(134): is_base_model,track_slice,,us,27.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(134): is_base_model,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(137): model_name,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(137): model_name,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(46): is_base_model,track_slice,,us,70.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(46): is_base_model,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(47): ,track_slice,,us,20.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/openai/models/serving.py(47): ,track_slice,,calls,256,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/elastic_ep/middleware.py(13): get_scaling_elastic_ep,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/elastic_ep/middleware.py(13): get_scaling_elastic_ep,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/elastic_ep/middleware.py(34): __call__,track_slice,,us,60.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/elastic_ep/middleware.py(34): __call__,track_slice,,calls,69,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(17): engine_client,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(17): engine_client,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(24): start_profile,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(24): start_profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(29): stop_profile,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/profile/api_router.py(29): stop_profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(317): render_completion,track_slice,,us,35.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(317): render_completion,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(340): render_completion,track_slice,,us,69.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(340): render_completion,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(466): preprocess_completion,track_slice,,us,92.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(466): preprocess_completion,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(480): preprocess_completion,track_slice,,us,81.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(480): preprocess_completion,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(482): preprocess_cmpl,track_slice,,us,108.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(482): preprocess_cmpl,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(503): preprocess_cmpl,track_slice,,us,79.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/render/serving.py(503): preprocess_cmpl,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(102): wrapper,track_slice,,us,84.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(102): wrapper,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(112): wrapper,track_slice,,us,55.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(112): wrapper,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(170): get_max_tokens,track_slice,,us,52.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(170): get_max_tokens,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(197): ,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(197): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(198): ,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(198): ,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(276): should_include_usage,track_slice,,us,27.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(276): should_include_usage,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(342): validate_json_request,track_slice,,us,49.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(342): validate_json_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(37): listen_for_disconnect,track_slice,,us,23.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(37): listen_for_disconnect,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(40): listen_for_disconnect,track_slice,,us,8.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(40): listen_for_disconnect,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(76): wrapper,track_slice,,us,112.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(76): wrapper,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(84): wrapper,track_slice,,us,71.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/api_utils.py(84): wrapper,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/server_utils.py(460): _force_log,track_slice,,us,32.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/entrypoints/serve/utils/server_utils.py(460): _force_log,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1023): ,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1023): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1474): ,track_slice,,us,29.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1474): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1586): ,track_slice,,us,21213.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1586): ,track_slice,,calls,66568,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1836): ,track_slice,,us,56.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1836): ,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1894): __getattr__,track_slice,,us,14474.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(1894): __getattr__,track_slice,,calls,66834,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(780): ,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(780): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(996): ,track_slice,,us,17.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/envs.py(996): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/inputs/engine.py(365): split_enc_dec_input,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/inputs/engine.py(365): split_enc_dec_input,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/inputs/engine.py(42): tokens_input,track_slice,,us,23.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/inputs/engine.py(42): tokens_input,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/logging_utils/formatter.py(20): format,track_slice,,us,48.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/logging_utils/formatter.py(20): format,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/outputs.py(109): __init__,track_slice,,us,7086.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/outputs.py(109): __init__,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/outputs.py(145): add,track_slice,,us,47.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/outputs.py(145): add,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/platforms/interface.py(188): get_max_output_tokens,track_slice,,us,6.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/platforms/interface.py(188): get_max_output_tokens,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/platforms/interface.py(879): validate_request,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/platforms/interface.py(879): validate_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(149): get_async_tokenizer,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(149): get_async_tokenizer,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(170): stat_mm_cache,track_slice,,us,164.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(170): stat_mm_cache,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(302): get_eos_token_id,track_slice,,us,23.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(302): get_eos_token_id,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(382): _render_prompt_async,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(382): _render_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(394): render_prompts_async,track_slice,,us,85.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(394): render_prompts_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(401): render_prompts_async,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(401): render_prompts_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(402): ,track_slice,,us,19.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(402): ,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(434): _tokenize_prompt_async,track_slice,,us,66.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(434): _tokenize_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(440): _tokenize_prompt_async,track_slice,,us,68.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(440): _tokenize_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(509): _tokenize_singleton_prompt_async,track_slice,,us,48.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(509): _tokenize_singleton_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(521): _tokenize_singleton_prompt_async,track_slice,,us,57.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(521): _tokenize_singleton_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(588): tokenize_prompt_async,track_slice,,us,18.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(588): tokenize_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(596): tokenize_prompt_async,track_slice,,us,23.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(596): tokenize_prompt_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(598): tokenize_prompts_async,track_slice,,us,56.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(598): tokenize_prompts_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(603): tokenize_prompts_async,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(603): tokenize_prompts_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(604): ,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(604): ,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(608): _apply_prompt_extras,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(608): _apply_prompt_extras,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(787): _process_tokens_async,track_slice,,us,47.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(787): _process_tokens_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(826): _process_singleton_async,track_slice,,us,18.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(826): _process_singleton_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(909): process_for_engine_async,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(909): process_for_engine_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(955): render_cmpl_async,track_slice,,us,116.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(955): render_cmpl_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(968): render_cmpl_async,track_slice,,us,31.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(968): render_cmpl_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(969): render_cmpl_async,track_slice,,us,137.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(969): render_cmpl_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(973): render_cmpl_async,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(973): render_cmpl_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(974): ,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(974): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(975): ,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/base.py(975): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/hf.py(1123): _process_tokens_async,track_slice,,us,50.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/hf.py(1123): _process_tokens_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(119): _validate_prompt_dict,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(119): _validate_prompt_dict,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(132): parse_dec_only_prompt,track_slice,,us,86.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(132): parse_dec_only_prompt,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(235): parse_model_prompt,track_slice,,us,15.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(235): parse_model_prompt,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(248): extract_target_prompt,track_slice,,us,32.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(248): extract_target_prompt,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(256): extract_prompt_components,track_slice,,us,63.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(256): extract_prompt_components,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(269): extract_prompt_len,track_slice,,us,35.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(269): extract_prompt_len,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(48): prompt_to_seq,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/inputs/preprocess.py(48): prompt_to_seq,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(187): max_input_tokens,track_slice,,us,20.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(187): max_input_tokens,track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(195): __post_init__,track_slice,,us,19.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(195): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(298): get_encode_kwargs,track_slice,,us,29.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(298): get_encode_kwargs,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(324): _text_len_check,track_slice,,us,374.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(324): _text_len_check,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(351): _text_lowercase,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(351): _text_lowercase,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(355): _validate_text,track_slice,,us,38.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(355): _validate_text,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(365): apply_pre_tokenization,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(365): apply_pre_tokenization,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(380): _token_padding,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(380): _token_padding,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(396): _token_truncation,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(396): _token_truncation,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(415): _token_len_check,track_slice,,us,21.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(415): _token_len_check,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(442): _validate_tokens,track_slice,,us,49.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(442): _validate_tokens,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(453): apply_post_tokenization,track_slice,,us,17.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/renderers/params.py(453): apply_post_tokenization,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(355): from_optional,track_slice,,us,99.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(355): from_optional,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,103.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,407.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(579): ,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(602): update_from_generation_config,track_slice,,us,69.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(602): update_from_generation_config,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(632): update_from_tokenizer,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(632): update_from_tokenizer,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(694): num_logprobs,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(694): num_logprobs,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(704): clone,track_slice,,us,16.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(704): clone,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(711): verify,track_slice,,us,85.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(711): verify,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(725): _validate_logprobs,track_slice,,us,12.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(725): _validate_logprobs,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(787): _validate_logit_bias,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(787): _validate_logit_bias,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(807): _validate_logits_processors,track_slice,,us,54.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(807): _validate_logits_processors,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(814): _validate_allowed_token_ids,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(814): _validate_allowed_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(840): _validate_spec_decode,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(840): _validate_spec_decode,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(854): _validate_structured_outputs,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/sampling_params.py(854): _validate_structured_outputs,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(137): max_token_id,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(137): max_token_id,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(141): max_chars_per_token,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(141): max_chars_per_token,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(48): _borrow_from_pool,track_slice,,us,16.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(48): _borrow_from_pool,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(52): _borrow_from_pool,track_slice,,us,15.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(52): _borrow_from_pool,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(72): convert_tokens_to_ids,track_slice,,us,80.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tokenizers/hf.py(72): convert_tokens_to_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tracing/utils.py(57): contains_trace_headers,track_slice,,us,14.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tracing/utils.py(57): contains_trace_headers,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tracing/utils.py(59): ,track_slice,,us,26.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/tracing/utils.py(59): ,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/__init__.py(11): random_uuid,track_slice,,us,100.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/__init__.py(11): random_uuid,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,31.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(104): _batch_encode_loop,track_slice,,us,33.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(104): _batch_encode_loop,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(131): _batch_encode_loop,track_slice,,us,27143.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(131): _batch_encode_loop,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(177): _queue_key,track_slice,,us,28.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(177): _queue_key,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(298): merge_async_iterators,track_slice,,us,44.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(298): merge_async_iterators,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(309): merge_async_iterators,track_slice,,us,18071.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(309): merge_async_iterators,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(310): merge_async_iterators,track_slice,,us,13969.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(310): merge_async_iterators,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(55): __call__,track_slice,,us,61.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(55): __call__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(60): __call__,track_slice,,us,12.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(60): __call__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(62): encode,track_slice,,us,31.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(62): encode,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(63): encode,track_slice,,us,64.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(63): encode,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(73): _get_queue,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(73): _get_queue,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(93): _batch_encode_loop,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/async_utils.py(93): _batch_encode_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,86.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,74,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(137): params,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(137): params,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(201): finished,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(201): finished,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(244): __post_init__,track_slice,,us,2612.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(244): __post_init__,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(63): __str__,track_slice,,us,15.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/__init__.py(63): __str__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(1044): is_running,track_slice,,us,34.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(1044): is_running,track_slice,,calls,135,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(1053): errored,track_slice,,us,49.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(1053): errored,track_slice,,calls,135,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(273): get_supported_tasks,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(273): get_supported_tasks,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(280): add_request,track_slice,,us,343.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(280): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(400): _add_request,track_slice,,us,45.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(400): _add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(524): generate,track_slice,,us,86.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(524): generate,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(579): generate,track_slice,,us,23692.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(579): generate,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(586): generate,track_slice,,us,25556.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(586): generate,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(637): _run_output_handler,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(637): _run_output_handler,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(660): output_handler,track_slice,,us,13113.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(660): output_handler,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(893): is_tracing_enabled,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(893): is_tracing_enabled,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(896): do_log_stats,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(896): do_log_stats,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(909): start_profile,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(909): start_profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(911): stop_profile,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/async_llm.py(911): stop_profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1008): process_outputs_socket,track_slice,,us,6660.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1008): process_outputs_socket,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1053): get_output_async,track_slice,,us,956.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1053): get_output_async,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1059): get_output_async,track_slice,,us,1567.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1059): get_output_async,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1064): _send_input,track_slice,,us,68.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1064): _send_input,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1076): _send_input_message,track_slice,,us,73.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1076): _send_input_message,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1101): call_utility_async,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1101): call_utility_async,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1102): call_utility_async,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1102): call_utility_async,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1104): _call_utility_async,track_slice,,us,20.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1104): _call_utility_async,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1116): _call_utility_async,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1116): _call_utility_async,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1121): add_request_async,track_slice,,us,71.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1121): add_request_async,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1141): profile_async,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1141): profile_async,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1144): profile_async,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(1144): profile_async,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(454): validate_alive,track_slice,,us,2312.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(454): validate_alive,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(670): ensure_alive,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(670): ensure_alive,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(678): free_pending_messages,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(678): free_pending_messages,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(757): _process_utility_output,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(757): _process_utility_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(984): _ensure_output_queue_task,track_slice,,us,191.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/core_client.py(984): _ensure_output_queue_task,track_slice,,calls,1097,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(148): get_next_output_text,track_slice,,us,19040.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(148): get_next_output_text,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(168): __init__,track_slice,,us,3797.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(168): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(210): decode_next,track_slice,,us,12087.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(210): decode_next,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(223): _protected_step,track_slice,,us,9828.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(223): _protected_step,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(31): __init__,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(31): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(48): from_new_request,track_slice,,us,42.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(48): from_new_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(69): __init__,track_slice,,us,42.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(69): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(95): update,track_slice,,us,92866.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/detokenizer.py(95): update,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(146): _validate_lora,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(146): _validate_lora,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(222): assign_request_id,track_slice,,us,86.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(222): assign_request_id,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(242): process_inputs,track_slice,,us,477.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(242): process_inputs,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(387): _validate_prompt_len,track_slice,,us,12.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(387): _validate_prompt_len,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(434): _validate_model_input,track_slice,,us,152.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(434): _validate_model_input,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(486): _validate_model_inputs,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(486): _validate_model_inputs,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(75): tokenizer,track_slice,,us,19.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(75): tokenizer,track_slice,,calls,256,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(82): _validate_params,track_slice,,us,60.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/input_processor.py(82): _validate_params,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(189): pop_prompt_logprobs,track_slice,,us,2956.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(189): pop_prompt_logprobs,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(348): update_from_output,track_slice,,us,3362.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(348): update_from_output,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(42): from_new_request,track_slice,,us,60.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/logprobs.py(42): from_new_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(103): __del__,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(103): __del__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(130): __init__,track_slice,,us,75.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(130): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(210): from_new_request,track_slice,,us,144.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(210): from_new_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(272): make_request_output,track_slice,,us,63070.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(272): make_request_output,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(333): _new_request_output,track_slice,,us,115933.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(333): _new_request_output,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(376): _new_completion_output,track_slice,,us,73262.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(376): _new_completion_output,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(512): add_request,track_slice,,us,91.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(512): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(54): __init__,track_slice,,us,35.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(54): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(576): process_outputs,track_slice,,us,150828.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(576): process_outputs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(62): put,track_slice,,us,13310.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(62): put,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(695): _finish_request,track_slice,,us,48.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(695): _finish_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(709): update_scheduler_stats,track_slice,,us,281.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(709): update_scheduler_stats,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(774): _update_stats_from_output,track_slice,,us,17636.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(774): _update_stats_from_output,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(78): get,track_slice,,us,10239.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(78): get,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(795): _update_stats_from_finished,track_slice,,us,60.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(795): _update_stats_from_finished,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(81): get,track_slice,,us,31047.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(81): get,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(88): get_nowait,track_slice,,us,7693.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(88): get_nowait,track_slice,,calls,65472,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(98): close,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/output_processor.py(98): close,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/parallel_sampling.py(134): observe_finished_request,track_slice,,us,19.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/engine/parallel_sampling.py(134): observe_finished_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1063): record,track_slice,,us,72375.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1063): record,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(132): _reset,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(132): _reset,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1338): record,track_slice,,us,1209.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1338): record,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1359): log,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(1359): log,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(141): _enable_perf_stats,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(141): _enable_perf_stats,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(144): _track_iteration_stats,track_slice,,us,415.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(144): _track_iteration_stats,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(152): _get_throughput,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(152): _get_throughput,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(159): log_prefix,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(159): log_prefix,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(163): record,track_slice,,us,1508.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(163): record,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(198): _update_stats,track_slice,,us,21.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(198): _update_stats,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(215): aggregate_scheduler_stats,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(215): aggregate_scheduler_stats,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(219): log,track_slice,,us,122.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(219): log,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(380): record,track_slice,,us,591.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(380): record,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(397): log,track_slice,,us,17.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(397): log,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(67): log,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/loggers.py(67): log,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(101): empty,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(101): empty,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(106): hit_rate,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(106): hit_rate,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(304): update_from_output,track_slice,,us,50.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(304): update_from_output,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(313): get_by_source,track_slice,,us,612.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(313): get_by_source,track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(328): __init__,track_slice,,us,1735.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(328): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(344): num_prompt_tokens,track_slice,,us,88.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(344): num_prompt_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(349): _time_since,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(349): _time_since,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(353): update_from_output,track_slice,,us,79680.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(353): update_from_output,track_slice,,calls,65536,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(404): update_from_events,track_slice,,us,115.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(404): update_from_events,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(428): update_from_finished_request,track_slice,,us,111.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(428): update_from_finished_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(514): _request_update,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(514): _request_update,track_slice,,calls,192,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(525): request_waiting,track_slice,,us,23.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(525): request_waiting,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(528): request_running,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(528): request_running,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(531): request_finished,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(531): request_finished,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(534): update_scheduler_stats,track_slice,,us,510.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(534): update_scheduler_stats,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(54): observe,track_slice,,us,214.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/metrics/stats.py(54): observe,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/sample/logits_processor/__init__.py(223): validate_logits_processors_parameters,track_slice,,us,22.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/sample/logits_processor/__init__.py(223): validate_logits_processors_parameters,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(132): __init__,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(132): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(166): encode,track_slice,,us,26.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(166): encode,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(340): decode,track_slice,,us,1378.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(340): decode,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(350): dec_hook,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(350): dec_hook,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(367): _decode_utility_result,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/serial_utils.py(367): _decode_utility_result,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/spec_decode/metrics.py(78): log,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,vllm/v1/spec_decode/metrics.py(78): log,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(369): remove,track_slice,,us,15.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(369): remove,track_slice,,calls,68,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(410): __delitem__,track_slice,,us,14.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(410): __delitem__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(414): __getitem__,track_slice,,us,80.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(414): __getitem__,track_slice,,calls,223,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(427): __setitem__,track_slice,,us,31.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(427): __setitem__,track_slice,,calls,133,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(451): get,track_slice,,us,55.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,weakref.py(451): get,track_slice,,calls,136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(193): cancel,track_slice,,us,84.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(193): cancel,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(270): recv_multipart,track_slice,,us,1835.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(270): recv_multipart,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(305): send_multipart,track_slice,,us,36.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(305): send_multipart,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(452): _remove_finished_future,track_slice,,us,182.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(452): _remove_finished_future,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(470): _add_recv_event,track_slice,,us,15269.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(470): _add_recv_event,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(49): _get_loop,track_slice,,us,938.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(49): _get_loop,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(525): _add_send_event,track_slice,,us,175.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(525): _add_send_event,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(586): _handle_recv,track_slice,,us,12747.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(586): _handle_recv,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(670): _handle_events,track_slice,,us,14997.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(670): _handle_events,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(682): _schedule_remaining_events,track_slice,,us,3283.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(682): _schedule_remaining_events,track_slice,,calls,3093,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(698): _add_io_state,track_slice,,us,1978.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(698): _add_io_state,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(704): _drop_io_state,track_slice,,us,3285.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(704): _drop_io_state,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(710): _update_handler,track_slice,,us,1842.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/_future.py(710): _update_handler,track_slice,,calls,2063,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/asyncio.py(106): _default_loop,track_slice,,us,605.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/asyncio.py(106): _default_loop,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/asyncio.py(151): ,track_slice,,us,2844.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/asyncio.py(151): ,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/attrsettr.py(43): __getattr__,track_slice,,us,3816.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/attrsettr.py(43): __getattr__,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/attrsettr.py(66): _get_attr_opt,track_slice,,us,1541.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/attrsettr.py(66): _get_attr_opt,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/socket.py(376): __setattr__,track_slice,,us,2472.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/socket.py(376): __setattr__,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,1850.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,195,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/socket.py(700): send_multipart,track_slice,,us,156.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/socket.py(700): send_multipart,track_slice,,calls,65,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/socket.py(771): recv_multipart,track_slice,,us,10085.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,python_function,zmq/sugar/socket.py(771): recv_multipart,track_slice,,calls,1033,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,us,16.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,us,12.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,us,52.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,calls,66,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,us,16.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,us,28.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,us,50.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,us,32382509.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,(1): ,track_slice,,us,25.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,(1): ,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,multiprocessing/connection.py(1122): wait,track_slice,,us,507.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,multiprocessing/connection.py(1122): wait,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,multiprocessing/connection.py(1136): wait,track_slice,,us,65.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,multiprocessing/connection.py(1136): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(199): __enter__,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(199): __enter__,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(202): __exit__,track_slice,,us,56.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(202): __exit__,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(209): __init__,track_slice,,us,49.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(209): __init__,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(21): _fileobj_to_fd,track_slice,,us,27.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(21): _fileobj_to_fd,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(215): _fileobj_lookup,track_slice,,us,32.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(215): _fileobj_lookup,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(234): register,track_slice,,us,174.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(234): register,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(268): close,track_slice,,us,59.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(268): close,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(347): __init__,track_slice,,us,118.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(347): __init__,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(351): register,track_slice,,us,111.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(351): register,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(402): select,track_slice,,us,129.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(402): select,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(415): select,track_slice,,us,788887.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(415): select,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(63): __init__,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,selectors.py(63): __init__,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,threading.py(1012): run,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,threading.py(601): is_set,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,threading.py(601): is_set,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,vllm/v1/engine/core_client.py(697): monitor_engine_cores,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,vllm/v1/engine/core_client.py(697): monitor_engine_cores,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,vllm/v1/engine/utils.py(230): monitor_engine_liveness,track_slice,,us,179.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,python_function,vllm/v1/engine/utils.py(230): monitor_engine_liveness,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,32.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,12.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,54.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,96.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,704,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,195,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,69.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,46.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,37.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,131,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,131,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,26.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,131,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,6.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,624548.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,23.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,32471906.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,28.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,384,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,13.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,23.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(823): items,track_slice,,us,32.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(823): items,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(845): __init__,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(845): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(892): __iter__,track_slice,,us,51.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(892): __iter__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(894): __iter__,track_slice,,us,15.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(894): __iter__,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(974): update,track_slice,,us,136.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(974): update,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(117): __instancecheck__,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,(117): __instancecheck__,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,asyncio/futures.py(396): _call_set_state,track_slice,,us,53.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,asyncio/futures.py(396): _call_set_state,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,collections/__init__.py(1120): __init__,track_slice,,us,68.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,collections/__init__.py(1120): __init__,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,collections/__init__.py(1137): __setitem__,track_slice,,us,18.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,collections/__init__.py(1137): __setitem__,track_slice,,calls,256,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,collections/__init__.py(1143): __iter__,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,collections/__init__.py(1143): __iter__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/_base.py(337): _invoke_callbacks,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/_base.py(337): _invoke_callbacks,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/_base.py(497): set_running_or_notify_cancel,track_slice,,us,13.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/_base.py(497): set_running_or_notify_cancel,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/_base.py(537): set_result,track_slice,,us,18.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/_base.py(537): set_result,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/thread.py(54): run,track_slice,,us,1778.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/thread.py(54): run,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/thread.py(90): _worker,track_slice,,us,63485.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,concurrent/futures/thread.py(90): _worker,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,contextlib.py(104): __init__,track_slice,,us,64.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,contextlib.py(104): __init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,contextlib.py(132): __enter__,track_slice,,us,26.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,contextlib.py(132): __enter__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,contextlib.py(141): __exit__,track_slice,,us,32.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,contextlib.py(141): __exit__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,contextlib.py(299): helper,track_slice,,us,41.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,contextlib.py(299): helper,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,enum.py(1291): value,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,enum.py(1291): value,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,enum.py(202): __get__,track_slice,,us,33.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,enum.py(202): __get__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(122): put,track_slice,,us,158.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(122): put,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(154): get,track_slice,,us,120.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(154): get,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(193): get_nowait,track_slice,,us,26.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(193): get_nowait,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(209): _qsize,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(209): _qsize,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(213): _put,track_slice,,us,15.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(213): _put,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(217): _get,track_slice,,us,12.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,queue.py(217): _get,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(299): __enter__,track_slice,,us,37.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(299): __enter__,track_slice,,calls,137,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(302): __exit__,track_slice,,us,34.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(302): __exit__,track_slice,,calls,137,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(314): _is_owned,track_slice,,us,22.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(314): _is_owned,track_slice,,calls,131,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(394): notify,track_slice,,us,45.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(394): notify,track_slice,,calls,134,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(424): notify_all,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(424): notify_all,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(515): release,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,threading.py(515): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(1289): __getattr__,track_slice,,us,259.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(1289): __getattr__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(222): __init__,track_slice,,us,217.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(222): __init__,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(2338): _get_padding_truncation_strategies,track_slice,,us,38.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(2338): _get_padding_truncation_strategies,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(2419): __call__,track_slice,,us,579.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(2419): __call__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(263): __getitem__,track_slice,,us,23.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(263): __getitem__,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(2951): _eventual_warn_about_too_long_sequence,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(2951): _eventual_warn_about_too_long_sequence,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(312): encodings,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(312): encodings,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(674): convert_to_tensors,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_base.py(674): convert_to_tensors,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_tokenizers.py(670): _convert_encoding,track_slice,,us,6803.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_tokenizers.py(670): _convert_encoding,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_tokenizers.py(782): set_truncation_and_padding,track_slice,,us,230.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_tokenizers.py(782): set_truncation_and_padding,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_tokenizers.py(857): _encode_plus,track_slice,,us,1171.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_tokenizers.py(857): _encode_plus,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_tokenizers.py(881): _is_valid_text_input,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,transformers/tokenization_utils_tokenizers.py(881): _is_valid_text_input,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,vllm/tokenizers/hf.py(48): _borrow_from_pool,track_slice,,us,21.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,vllm/tokenizers/hf.py(48): _borrow_from_pool,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,vllm/tokenizers/hf.py(52): _borrow_from_pool,track_slice,,us,37.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,vllm/tokenizers/hf.py(52): _borrow_from_pool,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,vllm/tokenizers/hf.py(92): __call__,track_slice,,us,182.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,vllm/tokenizers/hf.py(92): __call__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,vllm/utils/async_utils.py(128): ,track_slice,,us,139.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,python_function,vllm/utils/async_utils.py(128): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,17.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,33172869.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,asyncio/futures.py(396): _call_set_state,track_slice,,us,18.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,asyncio/futures.py(396): _call_set_state,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/_base.py(337): _invoke_callbacks,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/_base.py(337): _invoke_callbacks,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/_base.py(497): set_running_or_notify_cancel,track_slice,,us,8.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/_base.py(497): set_running_or_notify_cancel,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/_base.py(537): set_result,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/_base.py(537): set_result,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/thread.py(54): run,track_slice,,us,12.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/thread.py(54): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/thread.py(59): run,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/thread.py(59): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/thread.py(93): _worker,track_slice,,us,21.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,concurrent/futures/thread.py(93): _worker,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,enum.py(1266): __hash__,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,enum.py(1266): __hash__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(1012): run,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(299): __enter__,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(302): __exit__,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(314): _is_owned,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(394): notify,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(394): notify,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(424): notify_all,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(424): notify_all,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(515): release,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,threading.py(515): release,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,89.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,15.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,21.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,13.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,98458,98468,Trace,PyTorch Profiler (0),track_slice,,us,33173284.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,98458,98468,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,98458,98468,,PyTorch Profiler,track,,us,33173284.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,156,,thread 156 (vllm),track,,us,33173150.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,3588,,thread 3588 (vllm),track,,us,33173200.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2560,,thread 2560 (vllm),track,,us,33173159.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +,156,2559,,thread 2559 (vllm),track,,us,33173156.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/smci355-ccs-aus-n11-29_156.async_llm.1782867417520916443.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,27969.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,10302,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,16233.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,us,608.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,us,16.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,746.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,819.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,1642.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,675687.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1018,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,us,56.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,2366.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,us,653.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,us,2802.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,us,12370.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,49.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,102.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,52019.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,98.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,728.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1468.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12555.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3237127.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,11491.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1256.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,902975.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81599,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1156.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,735.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1276.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1034232.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81598,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1609340.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81595,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,560473.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81599,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1930.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1451.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,359.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,us,1994404.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,calls,329275,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,us,1659569.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,calls,164639,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,us,7525.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,__amd_rocclr_copyBuffer,track_slice,,us,757370.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,__amd_rocclr_copyBuffer,track_slice,,calls,164861,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,9867.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_fwd_kernel,track_slice,,us,2888582.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,_fwd_kernel,track_slice,,calls,399,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,one_shot_all_reduce_gluon,track_slice,,us,6739055.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,one_shot_all_reduce_gluon,track_slice,,calls,164850,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,persistent_all_gather_gluon,track_slice,,us,165736.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,persistent_all_gather_gluon,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,triton_poi_fused_1,track_slice,,us,466212.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,triton_poi_fused_1,track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,triton_poi_fused_2,track_slice,,us,354698.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,triton_poi_fused_2,track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,6433.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,us,562307.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,82317,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,us,55076.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61509.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,3781.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,12226.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,14762.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15756.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,3153.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,1795.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,8.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,24.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,2076.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,2173.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,3850.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,10069.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,5021.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2484703.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,82315,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,405944.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4488704.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,527254.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,2595.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,93.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,2958.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,## Call CompiledFxGraph f2jkmejgxngmtkonlcgb4xwhlp4otuxzzyxtr4pnf3oxxfjuyo2q ##,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,## Call CompiledFxGraph f2jkmejgxngmtkonlcgb4xwhlp4otuxzzyxtr4pnf3oxxfjuyo2q ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,## Call CompiledFxGraph fhe2cjxzycwzvqg233yviwstuzohfbj3pykyizzhycpgsg2wagwv ##,track_slice,,us,426.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,## Call CompiledFxGraph fhe2cjxzycwzvqg233yviwstuzohfbj3pykyizzhycpgsg2wagwv ##,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,## Call CompiledFxGraph fwxhpedw5l3dz5bpko4nevhbnbzi4jogbg3ycv2baabeo5ytb3b6 ##,track_slice,,us,8.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,## Call CompiledFxGraph fwxhpedw5l3dz5bpko4nevhbnbzi4jogbg3ycv2baabeo5ytb3b6 ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1626.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,938.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,_rocm_C::paged_attention,track_slice,,us,1159.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,_rocm_C::paged_attention,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,_rocm_C::wvSplitK,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::add_rmsnorm,track_slice,,us,658.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::add_rmsnorm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::gemm_a16w16,track_slice,,us,1867.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::get_padded_m,track_slice,,us,29.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::get_padded_m,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::rms_norm,track_slice,,us,18.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::static_per_tensor_quant,track_slice,,us,1066.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::static_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,us,4128.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_local_scalar_dense,track_slice,,us,424.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_local_scalar_dense,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_reshape_alias,track_slice,,us,575.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_reshape_alias,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_scaled_mm,track_slice,,us,91354.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_scaled_mm,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_softmax,track_slice,,us,3670.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_to_copy,track_slice,,us,7231.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_to_copy,track_slice,,calls,6180,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_unsafe_view,track_slice,,us,577.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::_unsafe_view,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::add,track_slice,,us,7795.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::add,track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::add_,track_slice,,us,2481.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::add_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::alias,track_slice,,us,667.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::alias,track_slice,,calls,2629,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::as_strided,track_slice,,us,14861.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::as_strided,track_slice,,calls,61488,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::clone,track_slice,,us,1157.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::clone,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::copy_,track_slice,,us,38447.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::copy_,track_slice,,calls,19576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::detach,track_slice,,us,1445.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::detach,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::detach_,track_slice,,us,127.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::detach_,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::div_,track_slice,,us,4586.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::div_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::empty,track_slice,,us,9048.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::empty,track_slice,,calls,8323,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::empty_like,track_slice,,us,1840.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::empty_like,track_slice,,calls,3839,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::empty_strided,track_slice,,us,13614.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::empty_strided,track_slice,,calls,8990,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::fill_,track_slice,,us,7560.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::fill_,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::flatten,track_slice,,us,1063.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::flatten,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::index,track_slice,,us,17848.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::index,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::index_select,track_slice,,us,1627.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::index_select,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::item,track_slice,,us,1809.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::item,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::lift_fresh,track_slice,,us,405.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::lift_fresh,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::linear,track_slice,,us,1388.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::lt,track_slice,,us,2214.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::lt,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::matmul,track_slice,,us,981.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::mm,track_slice,,us,36764.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::movedim,track_slice,,us,1565.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::movedim,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::permute,track_slice,,us,971.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::permute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::reshape,track_slice,,us,5296.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::reshape,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::resize_,track_slice,,us,1282.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::resize_,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::resolve_conj,track_slice,,us,193.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::resolve_conj,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::resolve_neg,track_slice,,us,138.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::resolve_neg,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::scatter_,track_slice,,us,34.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::scatter_,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::select,track_slice,,us,4565.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::select,track_slice,,calls,4686,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::slice,track_slice,,us,30267.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::slice,track_slice,,calls,49021,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::softmax,track_slice,,us,1603.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::sub,track_slice,,us,5006.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::sub,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::t,track_slice,,us,2985.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::t,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::to,track_slice,,us,4183.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::to,track_slice,,calls,12760,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::transpose,track_slice,,us,2065.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::transpose,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::unbind,track_slice,,us,1319.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::unbind,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::unsqueeze,track_slice,,us,2467.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::unsqueeze,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::view,track_slice,,us,9881.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::view,track_slice,,calls,17953,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::zero_,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,aten::zero_,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,triton_poi_fused_1,track_slice,,us,741.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,triton_poi_fused_1,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,triton_poi_fused_2,track_slice,,us,561.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,triton_poi_fused_2,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,32.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,us,777.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::all_gather,track_slice,,us,1982.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::all_reduce,track_slice,,us,800.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,us,1644.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1639.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,3314.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::unified_attention_with_output,track_slice,,us,754.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,532.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,us,774.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm_aiter::rms_norm,track_slice,,us,15.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cpu_op,vllm_aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipCtxGetCurrent,track_slice,,us,126.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,308.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipDeviceSynchronize,track_slice,,us,32.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipEventDestroy,track_slice,,us,1218.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipEventDestroy,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipEventRecord,track_slice,,us,11601.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipEventRecord,track_slice,,calls,4124,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipEventSynchronize,track_slice,,us,1455.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipEventSynchronize,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,13945.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2627,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipFuncSetAttribute,track_slice,,us,417.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipFuncSetAttribute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3090.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,7886,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipGraphLaunch,track_slice,,us,774474.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipGraphLaunch,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipHostMalloc,track_slice,,us,246.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipLaunchKernel,track_slice,,us,86139.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipLaunchKernel,track_slice,,calls,20897,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipMemcpyAsync,track_slice,,us,64315.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipMemcpyAsync,track_slice,,calls,12373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,15470.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipPointerGetAttribute,track_slice,,us,2894.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,15618,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3151.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12372,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipStreamWaitEvent,track_slice,,us,7117.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/mt/cmt5byxckqkweaz5k22mxionq22d3cipwfdqssvdxumkodkf6ewm.py(196): call,track_slice,,us,151.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/mt/cmt5byxckqkweaz5k22mxionq22d3cipwfdqssvdxumkodkf6ewm.py(196): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/tg/ctg6mwwkhpuul53majhppw7lnu3qrqg2mfoczcznl6ruhssslrii.py(501): call,track_slice,,us,12404.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/tg/ctg6mwwkhpuul53majhppw7lnu3qrqg2mfoczcznl6ruhssslrii.py(501): call,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/vl/cvlm3abdghso6hfrl5krgllaf7krshdtq6afjra27wm6kq4fpg7m.py(586): call,track_slice,,us,189.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/vl/cvlm3abdghso6hfrl5krgllaf7krshdtq6afjra27wm6kq4fpg7m.py(586): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,212.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,500.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,106.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,772.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,854.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1679.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1253.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,110.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,180.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1189.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1463.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1605,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,61.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,219.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3188.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1076.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1293.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1167.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2190,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,4823.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,277.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,35.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,16.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,983.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,314.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,35,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,269.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,5009.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,29139,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1747.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3566.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,44655,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1161.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14784,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,77.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,8333.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,126279,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,83.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,143.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1057,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,11933.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,15009.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,357543,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1684.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,33624.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,6962.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,65872,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,581.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,549349.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,12466566,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,12386.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,31893,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,7960.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,18694,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2103813.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,12462439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,6702.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,899.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2476.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2629.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,26.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,960.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3198.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1338.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,441.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,515728.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,12466567,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,374.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2969.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,189.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,117.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,5115.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,12308,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1584.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1863.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4921,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,9376.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1574.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,543.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,21.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1642.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1698.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,777.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2806.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,19.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,8088.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,143838,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,134.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3132.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,66042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,447.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,880.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,253.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,220.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,8587.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,9280,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,4802.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,4163.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,26705,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,849.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,5732,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,867.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,6977,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,44.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1560.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,606.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4468,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,7058.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,3857,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1736.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1371.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,15120.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,200578,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1594.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2059,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,5037.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,5145,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1593.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1264.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3859.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3398.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,23213.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,367095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,32.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3775.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1995.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,271.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1610,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,18930.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,66501,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,758.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,7509,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1043.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2238,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,290.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2075,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,784.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,549.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1518.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1237.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1269.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1608.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1290.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,9497,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,188.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,5414.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1146.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,51.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1130.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2054.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3468.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,10735.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2068,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,4625.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,4033.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,6860.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4118,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,728.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,17.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,86.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3477.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,704.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,388.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1766.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2304.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,5155,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1582.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,296.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,108.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,407,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1360.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1474.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,3799.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,20745,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1536.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,7976.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,10715.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4522,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,278.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,4562.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1422.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,985.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,940.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,2480.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1807.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,896.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,14.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,145.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,450.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,9410.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,12803,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,1182.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,73.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(804): get,track_slice,,us,1901.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(804): get,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(117): __instancecheck__,track_slice,,us,246.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(117): __instancecheck__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(133): _splitext,track_slice,,us,8.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(133): _splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(16): exists,track_slice,,us,546.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(16): exists,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(1390): _handle_fromlist,track_slice,,us,413.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(1390): _handle_fromlist,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(645): parent,track_slice,,us,958.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(645): parent,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(709): __getitem__,track_slice,,us,5085.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(709): __getitem__,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(791): encode,track_slice,,us,2151.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(791): encode,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(795): decode,track_slice,,us,690.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(795): decode,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(808): getenv,track_slice,,us,1111.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(808): getenv,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(117): splitext,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(117): splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(169): basename,track_slice,,us,14.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(169): basename,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(41): _get_sep,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(41): _get_sep,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(52): normcase,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(52): normcase,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(0): ,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(0): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(1): ,track_slice,,us,387.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(1): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(1): ,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(1): launcher,track_slice,,us,597.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(1): launcher,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(2): __eq__,track_slice,,us,1004.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(2): __eq__,track_slice,,calls,3072,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(2): __hash__,track_slice,,us,1825.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(2): __hash__,track_slice,,calls,4101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(2): __init__,track_slice,,us,4155.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(2): __init__,track_slice,,calls,7289,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(2): dynamic_func,track_slice,,us,22445.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(2): dynamic_func,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,12.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,12.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,15.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,13.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(404): execution_fn,track_slice,,us,6629.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(404): execution_fn,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,13.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,calls,168,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1326): caller,track_slice,,us,316.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1326): caller,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,us,19.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,us,9127.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1685): ,track_slice,,us,565.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1685): ,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1686): ,track_slice,,us,976.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1686): ,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,us,1517.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,us,1943.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,us,555.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,us,934.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,us,653.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,us,676.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,us,5306.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,us,6198.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,us,166.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,us,207.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,us,827.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,us,5934.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,us,823.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,us,718.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,us,12500.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(104): __init__,track_slice,,us,6216.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(104): __init__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(132): __enter__,track_slice,,us,3102.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(132): __enter__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(141): __exit__,track_slice,,us,2761.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(141): __exit__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(299): helper,track_slice,,us,3757.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(299): helper,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(772): __init__,track_slice,,us,548.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(772): __init__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(775): __enter__,track_slice,,us,578.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(775): __enter__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(778): __exit__,track_slice,,us,433.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,contextlib.py(778): __exit__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,copy.py(247): _reconstruct,track_slice,,us,1690.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,copy.py(247): _reconstruct,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,copy.py(61): copy,track_slice,,us,3472.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,copy.py(61): copy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,copyreg.py(98): __newobj__,track_slice,,us,463.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,us,1723.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,us,10707.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,us,10167.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,us,679.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,us,9068.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,us,764.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,us,3540.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,ctypes/__init__.py(517): cast,track_slice,,us,4205.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,ctypes/__init__.py(517): cast,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(1128): __new__,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(1128): __new__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(1266): __hash__,track_slice,,us,1051.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(1266): __hash__,track_slice,,calls,10276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(1291): value,track_slice,,us,293.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(1291): value,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(202): __get__,track_slice,,us,1545.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(202): __get__,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(720): __call__,track_slice,,us,22.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,enum.py(720): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,functools.py(982): __get__,track_slice,,us,1117.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,functools.py(982): __get__,track_slice,,calls,1093,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(2796): name,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(2796): name,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(2808): kind,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(2808): kind,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(2888): __init__,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(2888): __init__,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(2949): apply_defaults,track_slice,,us,34.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(2949): apply_defaults,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(3089): parameters,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(3089): parameters,track_slice,,calls,28,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(3133): _bind,track_slice,,us,145.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(3133): _bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(3275): bind,track_slice,,us,15.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,inspect.py(3275): bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,us,3889.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,us,6284.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,us,841.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,us,127.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/iris.py(1092): get_rank,track_slice,,us,62.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/iris.py(1092): get_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,us,35.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/iris.py(1173): all_gather,track_slice,,us,1053.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/iris.py(1173): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/iris.py(960): get_device_context,track_slice,,us,64.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/iris.py(960): get_device_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,us,379.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,us,2357.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,us,316.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,json/__init__.py(183): dumps,track_slice,,us,13.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,json/__init__.py(183): dumps,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,json/encoder.py(105): __init__,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,json/encoder.py(183): encode,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,json/encoder.py(183): encode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,json/encoder.py(205): iterencode,track_slice,,us,40.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,json/encoder.py(205): iterencode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1011): handle,track_slice,,us,18.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1011): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1137): flush,track_slice,,us,17.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1137): flush,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1148): emit,track_slice,,us,31.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1148): emit,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1517): debug,track_slice,,us,683.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2063,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1529): info,track_slice,,us,20.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1529): info,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,26.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,15.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1660): _log,track_slice,,us,26.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1660): _log,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1686): handle,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1686): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(170): ,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(170): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,565.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,3099,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,21.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(298): __init__,track_slice,,us,136.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(298): __init__,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(383): getMessage,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(447): usesTime,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(455): _format,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(455): _format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(462): format,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(462): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(668): usesTime,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(690): format,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(690): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(831): filter,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(831): filter,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(968): acquire,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(968): acquire,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(975): release,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(975): release,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(988): format,track_slice,,us,12.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,logging/__init__.py(988): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,15.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/process.py(108): run,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/process.py(189): name,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/process.py(189): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,728.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,19.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1237.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,nn.Module: Sampler_0,track_slice,,us,1342.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,nn.Module: Sampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1221.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,568.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,76.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,432.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,71.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,518.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,142.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,896.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1848.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,94.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2885.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,queue.py(122): put,track_slice,,us,15.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,queue.py(213): _put,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1012): run,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1182): name,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1182): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1485): current_thread,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(1485): current_thread,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(299): __enter__,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(302): __exit__,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(314): _is_owned,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(394): notify,track_slice,,us,13.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_compile.py(42): inner,track_slice,,us,27.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_compile.py(42): inner,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,223.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,70.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,64.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,105.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,24.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,479.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,193.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,922.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,103.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4210.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,26.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,258.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,862.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,109.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1482.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,31.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,1570.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,1369.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,380.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,61.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,5751.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,177.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,332.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,162.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,3823.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,2520.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,649.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,20105,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1079): __call__,track_slice,,us,685.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,899.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,718.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1145): ,track_slice,,us,499.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1145): ,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1257): __call__,track_slice,,us,2957.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,9971,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(864): __call__,track_slice,,us,815.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_ops.py(864): __call__,track_slice,,calls,4810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,510.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_tensor.py(1203): __iter__,track_slice,,us,1050.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_tensor.py(1203): __iter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,1197.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,3083.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,1585.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(823): ,track_slice,,us,888.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(823): ,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,5170.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3511.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2349.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7613.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1452.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2730.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,140.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,45.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1076.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1512.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3012.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,372.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,966.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2678.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,6203.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,1334.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,11462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,1345.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,2631.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1606.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,2107.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,36.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,86.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,102.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,216.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1284.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1668.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,707.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,573.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,436.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,894.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,6901.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,6136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,805.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,478.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(199): record,track_slice,,us,500.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,272.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,4996.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,298.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1324.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,933.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,17.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,15.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,35.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,12.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,47.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5304.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2688.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,5721,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,35.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,37.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/storage.py(74): size,track_slice,,us,1176.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/storage.py(74): size,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,656.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,52.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,221.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,19896.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,107.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch_guard.py(205): wrapper,track_slice,,us,1073.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch_guard.py(205): wrapper,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch_guard.py(286): wrapper_custom,track_slice,,us,3012.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch_guard.py(286): wrapper_custom,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch_guard.py(309): outer_wrapper,track_slice,,us,1040.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch_guard.py(309): outer_wrapper,track_slice,,calls,3432,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,us,14.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/__init__.py(67): cdiv,track_slice,,us,74.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,252.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,us,8565.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,us,10143.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,us,2726.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,us,200.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,3288.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,267.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,us,274.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/compiler/compiler.py(476): run,track_slice,,us,142.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/compiler/compiler.py(476): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,us,3687.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/knobs.py(130): get,track_slice,,us,1197.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/knobs.py(130): get,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/knobs.py(422): __call__,track_slice,,us,1721.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/knobs.py(422): __call__,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/knobs.py(75): __get__,track_slice,,us,3872.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/knobs.py(75): __get__,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,us,820.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,271.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/driver.py(36): active,track_slice,,us,373.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,us,1630.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,us,578.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(370): ,track_slice,,us,7187.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(370): ,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,us,5161.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(708): run,track_slice,,us,32467.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,triton/runtime/jit.py(708): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1174): __init__,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1215): __setattr__,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1269): __init__,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1273): ,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(166): _type_convert,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(175): _type_check,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(2187): cast,track_slice,,us,1898.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(2187): cast,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(2344): get_origin,track_slice,,us,29.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(2344): get_origin,track_slice,,calls,57,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(2374): get_args,track_slice,,us,22.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(2374): get_args,track_slice,,calls,56,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(317): _deduplicate,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(392): inner,track_slice,,us,678.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(392): inner,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(494): __repr__,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(515): __getitem__,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(694): Union,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(730): ,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(747): Optional,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(892): __init__,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(962): __eq__,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(971): __hash__,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,us,883.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1293.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,us,72.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,us,94.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,us,710.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1748.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,467.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,310.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,512.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,124.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,214.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,487.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6407.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1434,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,58.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,30.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,14.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,797.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,759.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,797.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,12.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,1023.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2541.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,694.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,194.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,442.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,93.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,528.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,959.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,us,1057.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,us,1073.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,359.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1347.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,565.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,249.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,381.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2832772.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,12462444,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1762.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,565.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2459.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,397.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,914.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,404383.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,12462444,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,311329.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,12462444,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,10832591.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1861453.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,12464505,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1879491.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,12466566,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5206.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9537.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,109.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,255.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,524.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,us,70.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,us,449.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,calls,5147,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,817.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,187.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,312.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,461.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,471.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,us,226.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,us,2566.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,us,469.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,874301.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,12462439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,100.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,329.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,132.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2239,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,96.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2098.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,213.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,173.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,4099.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,707.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,us,969.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,us,54.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,903.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,990.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,858.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,459.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,239.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,911.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,529.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,4688.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,1346.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12542.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1554.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,468.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2492.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,3286.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,24.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2526.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,61.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,35.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,57.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,794.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4512,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,95.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,47.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,106.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,2056,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,289.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,3429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,486.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,61.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,800.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,787.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,134.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,490.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(579): ,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(592): ,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,15.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,15.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1238.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,87.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,918.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,128.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2876.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4139.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1035.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1081.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,4791.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2103.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,222.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,13830.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,228.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3288.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7065.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2788.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5712.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,8035.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,119.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,408.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,46.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,568.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,96.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,114.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,101.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,416.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,316.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,378.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,277.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,us,2709.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,us,4313.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,us,302.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,996.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3377.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2555.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,60.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,6168.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,10147.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,144.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,18,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3108.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9263,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14300.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3553.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4162,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,16.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,51.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,23.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3069.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,444.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,756.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1539.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4098,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,23.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,15.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,523.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,393.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,157.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,31.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,102.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,199.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,129.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,679.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5223,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,18.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,40,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16166.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,50.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9567.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,21870.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,345.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,18.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,751.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6203.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2500.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,218.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1515.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,322.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,86.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,241726.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,104.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6028.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,10867.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,172631.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,198.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,115658.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,23416.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2019.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6574.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4885.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,246.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,572.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3557.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2499.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,151739.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,443.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,374.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1176.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,188.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3278.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,847.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5599.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,2945.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,66179.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2169.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,407.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,493.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,30690.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,154.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2574.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,577.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7316.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,702.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,49.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,274.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,168.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,100.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,881.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7681092.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,23710698.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(120): update,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(21): __enter__,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(27): __exit__,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(37): __init__,track_slice,,us,17.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(63): __iter__,track_slice,,us,27.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(95): copy,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(299): __enter__,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(302): __exit__,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(308): _release_save,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(311): _acquire_restore,track_slice,,us,74.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(314): _is_owned,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(323): wait,track_slice,,us,29.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(359): wait,track_slice,,us,9512274.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(601): is_set,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(637): wait,track_slice,,us,12.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(655): wait,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,14.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/_monitor.py(69): run,track_slice,,us,51.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(100): acquire,track_slice,,us,13.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(104): release,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(108): __enter__,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(111): __exit__,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(759): get_lock,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,21.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,33221295.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,(117): __instancecheck__,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,contextlib.py(104): __init__,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,contextlib.py(132): __enter__,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,contextlib.py(141): __exit__,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,contextlib.py(299): helper,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,queue.py(154): get,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,queue.py(171): get,track_slice,,us,14.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,queue.py(209): _qsize,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,queue.py(217): _get,track_slice,,us,12.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(1012): run,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(299): __enter__,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(302): __exit__,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(308): _release_save,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(311): _acquire_restore,track_slice,,us,42.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(314): _is_owned,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(323): wait,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(355): wait,track_slice,,us,1766.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(394): notify,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,32.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,48.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,23726239.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(120): update,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(27): __exit__,track_slice,,us,21.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(37): __init__,track_slice,,us,24.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(63): __iter__,track_slice,,us,41.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(95): copy,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(299): __enter__,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(302): __exit__,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(308): _release_save,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(311): _acquire_restore,track_slice,,us,73.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(314): _is_owned,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(323): wait,track_slice,,us,46.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(359): wait,track_slice,,us,9496658.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(601): is_set,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(637): wait,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(655): wait,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,19.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/_monitor.py(69): run,track_slice,,us,77.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(100): acquire,track_slice,,us,38.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(104): release,track_slice,,us,15.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(108): __enter__,track_slice,,us,6.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(759): get_lock,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,119848,119858,Trace,PyTorch Profiler (0),track_slice,,us,33223549.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,119848,119858,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,119848,119858,,PyTorch Profiler,track,,us,33223549.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,736,,thread 736 (VLLM::Worker_TP),track,,us,33223372.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1470,,thread 1470 (VLLM::Worker_TP),track,,us,33223441.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1426,,thread 1426 (VLLM::Worker_TP),track,,us,33223362.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,736,1392,,thread 1392 (VLLM::Worker_TP),track,,us,33223356.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,4,,stream 4 ,track,,us,33014572.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +2,4,9,,stream 9 ,track,,us,32642476.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank2.1782867667508258744.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,37168.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,10302,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,9196.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,us,624.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,766.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,856.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,1746.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,595920.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1018,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,us,54.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,1796.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,us,653.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,us,57.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,us,24905.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,49.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,104.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,53730.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,105.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,738.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1462.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12428.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3211313.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1440,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,11482.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1296.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,916157.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81598,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1181.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,739.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1273.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1038808.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1596747.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81597,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,568298.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81599,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1920.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1456.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,354.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,us,2080075.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,calls,329277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,us,1713437.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,calls,164640,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,us,7903.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,__amd_rocclr_copyBuffer,track_slice,,us,810064.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,__amd_rocclr_copyBuffer,track_slice,,calls,164862,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10076.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_fwd_kernel,track_slice,,us,2876226.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,_fwd_kernel,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,one_shot_all_reduce_gluon,track_slice,,us,6684590.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,one_shot_all_reduce_gluon,track_slice,,calls,164848,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,persistent_all_gather_gluon,track_slice,,us,164258.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,persistent_all_gather_gluon,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,triton_poi_fused_1,track_slice,,us,482360.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,triton_poi_fused_1,track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,triton_poi_fused_2,track_slice,,us,381341.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,triton_poi_fused_2,track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,7628.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,us,585130.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,82318,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,us,54159.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61733.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4216.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,13464.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,14790.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15791.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,3781.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,2487.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,25.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,3125.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,3168.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,6417.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,10217.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,5037.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2497144.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,82315,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,424274.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4523374.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,804,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,539204.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,2682.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,94.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,3709.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,## Call CompiledFxGraph fhpxpietrsscjx363ho24dqxqbdv2jsg77ycneyllcs6uwibmoke ##,track_slice,,us,19.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,## Call CompiledFxGraph fhpxpietrsscjx363ho24dqxqbdv2jsg77ycneyllcs6uwibmoke ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,## Call CompiledFxGraph fpootx7x7xpj6d7aj324qyyc4rgmq2rs6zjdpv6hrk45uqpmbe42 ##,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,## Call CompiledFxGraph fpootx7x7xpj6d7aj324qyyc4rgmq2rs6zjdpv6hrk45uqpmbe42 ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,## Call CompiledFxGraph fwwlwe4r5sjdr5wqr7hwqaoixw6utfut65uh7xr4mjwjo7tz4xid ##,track_slice,,us,408.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,## Call CompiledFxGraph fwwlwe4r5sjdr5wqr7hwqaoixw6utfut65uh7xr4mjwjo7tz4xid ##,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1763.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,982.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,_rocm_C::paged_attention,track_slice,,us,1142.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,_rocm_C::paged_attention,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,_rocm_C::wvSplitK,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::add_rmsnorm,track_slice,,us,658.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::add_rmsnorm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::gemm_a16w16,track_slice,,us,1918.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::get_padded_m,track_slice,,us,32.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::get_padded_m,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::rms_norm,track_slice,,us,26.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::static_per_tensor_quant,track_slice,,us,1095.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::static_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,us,3723.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_local_scalar_dense,track_slice,,us,399.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_local_scalar_dense,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_reshape_alias,track_slice,,us,630.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_reshape_alias,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_scaled_mm,track_slice,,us,107180.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_scaled_mm,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_softmax,track_slice,,us,3580.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_to_copy,track_slice,,us,7402.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_to_copy,track_slice,,calls,6180,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_unsafe_view,track_slice,,us,584.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::_unsafe_view,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::add,track_slice,,us,8096.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::add,track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::add_,track_slice,,us,2538.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::add_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::alias,track_slice,,us,690.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::alias,track_slice,,calls,2629,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::as_strided,track_slice,,us,14400.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::as_strided,track_slice,,calls,61488,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::clone,track_slice,,us,1162.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::clone,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::copy_,track_slice,,us,38628.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::copy_,track_slice,,calls,19576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::detach,track_slice,,us,1444.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::detach,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::detach_,track_slice,,us,117.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::detach_,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::div_,track_slice,,us,4542.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::div_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::empty,track_slice,,us,9147.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::empty,track_slice,,calls,8323,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::empty_like,track_slice,,us,1863.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::empty_like,track_slice,,calls,3839,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::empty_strided,track_slice,,us,15750.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::empty_strided,track_slice,,calls,8990,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::fill_,track_slice,,us,7560.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::fill_,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::flatten,track_slice,,us,1073.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::flatten,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::index,track_slice,,us,18507.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::index,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::index_select,track_slice,,us,1714.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::index_select,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::item,track_slice,,us,1780.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::item,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::lift_fresh,track_slice,,us,355.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::lift_fresh,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::linear,track_slice,,us,1448.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::lt,track_slice,,us,2275.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::lt,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::matmul,track_slice,,us,999.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::mm,track_slice,,us,37761.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::movedim,track_slice,,us,1588.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::movedim,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::permute,track_slice,,us,969.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::permute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::reshape,track_slice,,us,5200.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::reshape,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::resize_,track_slice,,us,1348.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::resize_,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::resolve_conj,track_slice,,us,176.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::resolve_conj,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::resolve_neg,track_slice,,us,137.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::resolve_neg,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::scatter_,track_slice,,us,40.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::scatter_,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::select,track_slice,,us,4776.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::select,track_slice,,calls,4686,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::slice,track_slice,,us,29205.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::slice,track_slice,,calls,49021,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::softmax,track_slice,,us,1571.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::sub,track_slice,,us,4998.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::sub,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::t,track_slice,,us,3178.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::t,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::to,track_slice,,us,4320.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::to,track_slice,,calls,12760,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::transpose,track_slice,,us,2059.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::transpose,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::unbind,track_slice,,us,1337.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::unbind,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::unsqueeze,track_slice,,us,2494.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::unsqueeze,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::view,track_slice,,us,11207.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::view,track_slice,,calls,17953,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::zero_,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,aten::zero_,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,triton_poi_fused_1,track_slice,,us,728.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,triton_poi_fused_1,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,triton_poi_fused_2,track_slice,,us,569.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,triton_poi_fused_2,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,43.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,us,760.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::all_gather,track_slice,,us,2073.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::all_reduce,track_slice,,us,825.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,us,1611.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1617.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,3332.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::unified_attention_with_output,track_slice,,us,717.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,516.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,us,792.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm_aiter::rms_norm,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cpu_op,vllm_aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipCtxGetCurrent,track_slice,,us,111.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,340.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipDeviceSynchronize,track_slice,,us,51.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipEventDestroy,track_slice,,us,455.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipEventDestroy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipEventRecord,track_slice,,us,8830.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipEventRecord,track_slice,,calls,3095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipEventSynchronize,track_slice,,us,1447.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipEventSynchronize,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,13281.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2627,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipFuncSetAttribute,track_slice,,us,525.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipFuncSetAttribute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3137.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,7886,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipGraphLaunch,track_slice,,us,852878.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipGraphLaunch,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipHostMalloc,track_slice,,us,331.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipLaunchKernel,track_slice,,us,88345.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipLaunchKernel,track_slice,,calls,20897,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipMemcpyAsync,track_slice,,us,59585.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipMemcpyAsync,track_slice,,calls,12373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,16517.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipPointerGetAttribute,track_slice,,us,3063.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,15618,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3789.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12372,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipStreamWaitEvent,track_slice,,us,8452.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/3b/c3bexii7fo3kgwviij4pbmkcvc2e4kkhwj3t647pn2kfy6bohut6.py(501): call,track_slice,,us,12111.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/3b/c3bexii7fo3kgwviij4pbmkcvc2e4kkhwj3t647pn2kfy6bohut6.py(501): call,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/ep/cepde7a2qc3pwrfrtn5twc22g4v5ilv6aipn7tfjjvem7krrll4x.py(570): call,track_slice,,us,231.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/ep/cepde7a2qc3pwrfrtn5twc22g4v5ilv6aipn7tfjjvem7krrll4x.py(570): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/m5/cm5zvswehrrsnaehlrwdwxtr2udzx4ym4cctyah73rq6ykxwi6rw.py(196): call,track_slice,,us,156.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/m5/cm5zvswehrrsnaehlrwdwxtr2udzx4ym4cctyah73rq6ykxwi6rw.py(196): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,235.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,932.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,120.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,761.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,843.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1663.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1314.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,116.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,179.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1251.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1425.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1605,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,53.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,211.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3141.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1040.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1360.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1194.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2190,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,4985.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,288.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,31.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,15.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,963.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,229.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,35,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,283.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,6243.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,29139,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1693.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,4583.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,44655,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1147.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14784,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,70.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,8712.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,126279,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,83.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,140.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1057,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,11408.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,14850.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,357543,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1803.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,45518.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,6838.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,65872,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,630.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,537244.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,12058241,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,13123.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,31893,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,9015.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,18694,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2412239.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,12054114,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,7502.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2621.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,901.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2558.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,33.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,969.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3442.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1050.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1337.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,473.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,495434.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,12060302,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,416.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2954.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,186.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,108.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,5302.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,12308,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2129.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1939.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4921,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,23751.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1565.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,613.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,639.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,21.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2406.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,811.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1734.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2884.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,24.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,263.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,8470.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,143838,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,135.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3148.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,66042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,414.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1000.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,628.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,213.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,77047.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,9280,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,5356.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,5072.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,26705,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,779.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,5732,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,918.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,6977,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,43.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1733.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,616.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4468,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,6948.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,3857,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1728.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1394.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,15108.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,200578,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2042.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2059,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,5740.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,5145,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,7277.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1278.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,4105.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3432.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,23405.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,367095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,38.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3546.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2683.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,260.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1610,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,19051.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,66501,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,699.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,7509,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1005.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2238,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,332.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2075,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,872.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,551.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1587.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1270.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1170.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1659.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1307.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,9497,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,189.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,5439.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1138.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,57.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1148.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2833.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3571.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,10873.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2068,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2915.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,262.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,4862.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,4910.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,7058.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4118,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,799.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,27.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,148.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3625.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,703.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,381.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1597.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2305.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,5155,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1599.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,321.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,104.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,407,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1478.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1396.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,3746.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,20745,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,12264.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,8542.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,12746.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4522,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,389.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,4671.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1486.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,968.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,916.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2850.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,2074.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,883.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,161.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,498.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,9472.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,12803,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,1126.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,76.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(804): get,track_slice,,us,2202.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(804): get,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(117): __instancecheck__,track_slice,,us,453.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(117): __instancecheck__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(133): _splitext,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(133): _splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(16): exists,track_slice,,us,613.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(16): exists,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(1390): _handle_fromlist,track_slice,,us,384.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(1390): _handle_fromlist,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(645): parent,track_slice,,us,903.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(645): parent,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(709): __getitem__,track_slice,,us,5213.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(709): __getitem__,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(791): encode,track_slice,,us,2138.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(791): encode,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(795): decode,track_slice,,us,731.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(795): decode,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(808): getenv,track_slice,,us,1139.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(808): getenv,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(117): splitext,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(117): splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(169): basename,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(169): basename,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(41): _get_sep,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(41): _get_sep,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(52): normcase,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(52): normcase,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(0): ,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(0): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(1): ,track_slice,,us,397.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(1): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(1): ,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(1): launcher,track_slice,,us,573.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(1): launcher,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(2): __eq__,track_slice,,us,1003.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(2): __eq__,track_slice,,calls,3072,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(2): __hash__,track_slice,,us,1779.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(2): __hash__,track_slice,,calls,4101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(2): __init__,track_slice,,us,4717.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(2): __init__,track_slice,,calls,7289,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(2): dynamic_func,track_slice,,us,22854.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(2): dynamic_func,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,24.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(404): execution_fn,track_slice,,us,6895.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(404): execution_fn,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,13.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,calls,168,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1326): caller,track_slice,,us,346.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1326): caller,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,us,23.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,us,8978.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1685): ,track_slice,,us,527.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1685): ,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1686): ,track_slice,,us,926.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1686): ,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,us,1510.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,us,1841.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,us,537.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,us,884.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,us,641.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,us,649.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,us,5240.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,us,6332.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,us,157.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,us,234.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,us,779.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,us,6114.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,us,862.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,us,765.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,us,12493.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(104): __init__,track_slice,,us,8562.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(104): __init__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(132): __enter__,track_slice,,us,3529.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(132): __enter__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(141): __exit__,track_slice,,us,3257.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(141): __exit__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(299): helper,track_slice,,us,6160.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(299): helper,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(772): __init__,track_slice,,us,522.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(772): __init__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(775): __enter__,track_slice,,us,564.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(775): __enter__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(778): __exit__,track_slice,,us,450.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,contextlib.py(778): __exit__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,copy.py(247): _reconstruct,track_slice,,us,1717.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,copy.py(247): _reconstruct,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,copy.py(61): copy,track_slice,,us,4168.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,copy.py(61): copy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,copyreg.py(98): __newobj__,track_slice,,us,479.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,us,1820.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,us,11074.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,us,10114.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,us,631.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,us,9230.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,us,803.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,us,3721.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,ctypes/__init__.py(517): cast,track_slice,,us,4228.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,ctypes/__init__.py(517): cast,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(1128): __new__,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(1128): __new__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(1266): __hash__,track_slice,,us,1058.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(1266): __hash__,track_slice,,calls,10276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(1291): value,track_slice,,us,305.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(1291): value,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(202): __get__,track_slice,,us,1540.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(202): __get__,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(720): __call__,track_slice,,us,27.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,enum.py(720): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,functools.py(982): __get__,track_slice,,us,1158.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,functools.py(982): __get__,track_slice,,calls,1093,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(2796): name,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(2796): name,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(2808): kind,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(2808): kind,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(2888): __init__,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(2888): __init__,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(2949): apply_defaults,track_slice,,us,32.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(2949): apply_defaults,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(3089): parameters,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(3089): parameters,track_slice,,calls,28,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(3133): _bind,track_slice,,us,167.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(3133): _bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(3275): bind,track_slice,,us,15.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,inspect.py(3275): bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,us,3910.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,us,6282.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,us,898.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,us,133.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/iris.py(1092): get_rank,track_slice,,us,57.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/iris.py(1092): get_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,us,39.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/iris.py(1173): all_gather,track_slice,,us,1129.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/iris.py(1173): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/iris.py(960): get_device_context,track_slice,,us,77.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/iris.py(960): get_device_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,us,341.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,us,2417.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,us,605.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,json/__init__.py(183): dumps,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,json/__init__.py(183): dumps,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,json/encoder.py(105): __init__,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,json/encoder.py(183): encode,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,json/encoder.py(183): encode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,json/encoder.py(205): iterencode,track_slice,,us,24.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,json/encoder.py(205): iterencode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1011): handle,track_slice,,us,20.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1011): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1137): flush,track_slice,,us,14.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1137): flush,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1148): emit,track_slice,,us,42.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1148): emit,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1517): debug,track_slice,,us,544.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2063,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1529): info,track_slice,,us,19.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1529): info,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,34.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,20.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1660): _log,track_slice,,us,33.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1660): _log,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1686): handle,track_slice,,us,19.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1686): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(170): ,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(170): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,13.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,699.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,3099,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,26.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(298): __init__,track_slice,,us,139.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(298): __init__,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(383): getMessage,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(447): usesTime,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(455): _format,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(455): _format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(462): format,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(462): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(668): usesTime,track_slice,,us,12.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(690): format,track_slice,,us,30.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(690): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(831): filter,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(831): filter,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(968): acquire,track_slice,,us,8.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(968): acquire,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(975): release,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(975): release,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(988): format,track_slice,,us,13.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,logging/__init__.py(988): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/process.py(189): name,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/process.py(189): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,679.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,32.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1294.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,nn.Module: Sampler_0,track_slice,,us,1884.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,nn.Module: Sampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1063.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,640.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,12.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,72.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,471.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,72.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,690.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,164.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,1312.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,2148.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,88.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2891.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,queue.py(122): put,track_slice,,us,7032.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,queue.py(122): put,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,queue.py(213): _put,track_slice,,us,1092.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,queue.py(213): _put,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1012): run,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1012): run,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1032): _bootstrap,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1182): name,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1182): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1485): current_thread,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(1485): current_thread,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(299): __enter__,track_slice,,us,1031.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(299): __enter__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(302): __exit__,track_slice,,us,876.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(302): __exit__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(314): _is_owned,track_slice,,us,735.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(314): _is_owned,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(394): notify,track_slice,,us,3200.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,threading.py(394): notify,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_compile.py(42): inner,track_slice,,us,37.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_compile.py(42): inner,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,291.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,90.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,66.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,105.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,30.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,450.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,189.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,869.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,82.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4148.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,24.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,234.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,805.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,111.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1420.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,34.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,1647.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,1311.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,387.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,66.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,5720.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,182.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,324.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,171.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,4168.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,3027.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,627.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,20105,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1079): __call__,track_slice,,us,615.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,969.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,718.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1145): ,track_slice,,us,511.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1145): ,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1257): __call__,track_slice,,us,2862.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,9971,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(864): __call__,track_slice,,us,839.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_ops.py(864): __call__,track_slice,,calls,4810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,464.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_tensor.py(1203): __iter__,track_slice,,us,1105.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_tensor.py(1203): __iter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,1403.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,3107.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,1666.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(823): ,track_slice,,us,875.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(823): ,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,5254.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3407.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2468.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,9005.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1523.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2883.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,138.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,29.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1165.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1456.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,2947.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,389.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,1232.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2766.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,6562.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,1360.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,11462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,1407.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,2875.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1668.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,2425.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,37.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,85.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,92.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,211.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1258.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1557.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,757.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,500.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,484.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,1449.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,7028.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,6136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,995.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,497.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(199): record,track_slice,,us,492.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,284.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,5459.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,328.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1559.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,950.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,13.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,26.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,8.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,51.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5508.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,3038.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,5721,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,25.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,29.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/storage.py(74): size,track_slice,,us,1169.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/storage.py(74): size,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,621.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,45.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,152.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,23467.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,79.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch_guard.py(205): wrapper,track_slice,,us,1021.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch_guard.py(205): wrapper,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch_guard.py(286): wrapper_custom,track_slice,,us,2961.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch_guard.py(286): wrapper_custom,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch_guard.py(309): outer_wrapper,track_slice,,us,1077.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch_guard.py(309): outer_wrapper,track_slice,,calls,3432,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,us,13.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/__init__.py(67): cdiv,track_slice,,us,72.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,240.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,us,8953.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,us,10321.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,us,2882.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,us,213.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,3439.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,256.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,us,278.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/compiler/compiler.py(476): run,track_slice,,us,138.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/compiler/compiler.py(476): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,us,3944.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/knobs.py(130): get,track_slice,,us,1147.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/knobs.py(130): get,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/knobs.py(422): __call__,track_slice,,us,1715.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/knobs.py(422): __call__,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/knobs.py(75): __get__,track_slice,,us,3812.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/knobs.py(75): __get__,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,us,766.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,265.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/driver.py(36): active,track_slice,,us,373.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,us,1568.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,us,604.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(370): ,track_slice,,us,7403.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(370): ,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,us,5304.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(708): run,track_slice,,us,34005.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,triton/runtime/jit.py(708): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1174): __init__,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1215): __setattr__,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1269): __init__,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1273): ,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(166): _type_convert,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(175): _type_check,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(2187): cast,track_slice,,us,1819.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(2187): cast,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(2344): get_origin,track_slice,,us,30.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(2344): get_origin,track_slice,,calls,57,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(2374): get_args,track_slice,,us,19.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(2374): get_args,track_slice,,calls,56,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(317): _deduplicate,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(392): inner,track_slice,,us,737.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(392): inner,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(494): __repr__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(515): __getitem__,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(694): Union,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(730): ,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(747): Optional,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(892): __init__,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(962): __eq__,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(971): __hash__,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,us,842.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1371.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,us,72.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,us,101.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,us,726.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1969.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,439.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,300.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,498.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,110.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,217.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,446.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6404.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1434,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,72.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,42.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,14.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,1011.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,920.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,1008.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,958.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2459.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,677.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,152.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,635.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,85.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,560.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,900.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,us,1010.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,us,1242.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,275.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1332.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,561.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,232.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,377.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2728662.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,12054119,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2707.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,600.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,3030.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,474.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,1567.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,386382.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,12054119,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,305335.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,12054119,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,10454954.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1813178.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,12056180,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1823677.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,12058241,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5724.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,11980.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,128.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,234.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,496.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,us,68.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,us,410.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,calls,5147,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,852.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,179.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,328.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,485.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,620.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,us,219.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,us,2420.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,us,456.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,890721.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,12054114,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,108.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,339.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,113.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2239,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,91.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2146.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,212.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,180.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,4270.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,743.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,us,916.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,us,72.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,916.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1092.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,904.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,430.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,236.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,911.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,709.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,4697.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,1357.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,13043.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1499.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,501.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2509.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,4951.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,33.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2211.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,63.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,39.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,61.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,690.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4512,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,85.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,48.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,102.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,2056,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,283.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,3429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,473.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,57.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,725.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,979.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,144.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,501.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(579): ,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/usage/usage_lib.py(174): _report_usage_worker,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/usage/usage_lib.py(174): _report_usage_worker,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/usage/usage_lib.py(256): _report_continuous_usage,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/usage/usage_lib.py(256): _report_continuous_usage,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1302.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,81.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,1287.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,116.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,3078.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4142.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1176.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1016.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,4707.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2106.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,229.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,13800.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,205.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3528.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7193.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2825.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5605.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,1156.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,6737.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,123.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,489.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,41.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,582.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,90.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,113.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,89.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,21.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,506.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,386.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,371.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,285.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,8.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,12.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,13.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,us,2884.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,us,4446.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,us,287.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,956.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3750.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2614.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,55.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,7093.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,13480.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,175.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,18,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3378.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9263,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14394.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3723.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4162,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,86.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,33.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,4070.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,1246.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,725.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1851.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4098,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,24.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,15.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,13.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,594.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,622.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,162.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,37.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,131.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,205.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,125.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,774.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5223,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,40,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16616.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,61.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9701.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,22993.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,374.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,1174.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,7664.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2904.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,277.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1473.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,308.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,93.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,249431.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,107.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6354.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11990.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,176264.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,177.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,125376.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,23772.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2022.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6731.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,5135.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,326.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,728.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3571.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2516.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,152979.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,778.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,379.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1220.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,186.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3799.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,831.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5827.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,2855.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,68943.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2262.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,428.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,510.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,31987.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,171.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2689.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,655.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,8526.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,740.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,51.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,268.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,192.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,89.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,1118.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7678191.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,23697965.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(120): update,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(17): __init__,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(21): __enter__,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(27): __exit__,track_slice,,us,18.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(37): __init__,track_slice,,us,18.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,16.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(63): __iter__,track_slice,,us,36.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(95): copy,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(299): __enter__,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(302): __exit__,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(308): _release_save,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(311): _acquire_restore,track_slice,,us,40.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(314): _is_owned,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(323): wait,track_slice,,us,36.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(359): wait,track_slice,,us,9524670.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(601): is_set,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(637): wait,track_slice,,us,14.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(655): wait,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,17.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/_monitor.py(69): run,track_slice,,us,62.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(100): acquire,track_slice,,us,24.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(104): release,track_slice,,us,12.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(108): __enter__,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(759): get_lock,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,cuda_runtime,hipEventDestroy,track_slice,,us,1511.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,cuda_runtime,hipEventDestroy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,cuda_runtime,hipEventRecord,track_slice,,us,3299.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,cuda_runtime,hipEventRecord,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,cuda_runtime,hipEventSynchronize,track_slice,,us,19387846.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,cuda_runtime,hipEventSynchronize,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,1171.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,180.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,1312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,35032.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,829.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,6183,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,3098.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,874.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,9556,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,699.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,5627.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,12366,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,529.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,407.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,598.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,514.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,13045515.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,7309,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,117.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,1312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,648.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,113.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,1312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,153052.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,1153.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,us,13161.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,(117): __instancecheck__,track_slice,,us,654.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,(117): __instancecheck__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,contextlib.py(104): __init__,track_slice,,us,6720.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,contextlib.py(104): __init__,track_slice,,calls,6183,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,contextlib.py(132): __enter__,track_slice,,us,1905.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,contextlib.py(132): __enter__,track_slice,,calls,6183,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,contextlib.py(141): __exit__,track_slice,,us,1325.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,contextlib.py(141): __exit__,track_slice,,calls,6183,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,contextlib.py(299): helper,track_slice,,us,5676.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,contextlib.py(299): helper,track_slice,,calls,6183,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,241.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,524.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,queue.py(154): get,track_slice,,us,11380.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,queue.py(154): get,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,queue.py(171): get,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,queue.py(209): _qsize,track_slice,,us,1431.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,queue.py(209): _qsize,track_slice,,calls,3373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,queue.py(217): _get,track_slice,,us,405.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,queue.py(217): _get,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(299): __enter__,track_slice,,us,682.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(299): __enter__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(302): __exit__,track_slice,,us,1439.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(302): __exit__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(308): _release_save,track_slice,,us,348.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(308): _release_save,track_slice,,calls,1312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(311): _acquire_restore,track_slice,,us,1098.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(314): _is_owned,track_slice,,us,719.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(314): _is_owned,track_slice,,calls,3373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(323): wait,track_slice,,us,6265.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(323): wait,track_slice,,calls,1312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(355): wait,track_slice,,us,1059.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(394): notify,track_slice,,us,1460.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,threading.py(394): notify,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,1744.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2233.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,535.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,4415.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,580.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,8753.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,2394.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,5701.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,3082.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,6183,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,16155.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,1039.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,6987.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,299342.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/v1/worker/gpu_model_runner.py(282): get_output,track_slice,,us,29167.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,vllm/v1/worker/gpu_model_runner.py(282): get_output,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,141567.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,6.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,23686135.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,14.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(120): update,track_slice,,us,23.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(17): __init__,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(27): __exit__,track_slice,,us,18.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(37): __init__,track_slice,,us,32.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(63): __iter__,track_slice,,us,49.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(95): copy,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(299): __enter__,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(302): __exit__,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(308): _release_save,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(311): _acquire_restore,track_slice,,us,73.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(314): _is_owned,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(323): wait,track_slice,,us,67.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(359): wait,track_slice,,us,9536333.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(601): is_set,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(637): wait,track_slice,,us,28.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(655): wait,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,26.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/_monitor.py(69): run,track_slice,,us,76.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(100): acquire,track_slice,,us,23.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(104): release,track_slice,,us,19.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(108): __enter__,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(759): get_lock,track_slice,,us,5.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,120082,120092,Trace,PyTorch Profiler (0),track_slice,,us,33223154.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,120082,120092,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,120082,120092,,PyTorch Profiler,track,,us,33223154.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,728,,thread 728 (VLLM::Worker_TP),track,,us,33223045.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1473,,thread 1473 (VLLM::Worker_TP),track,,us,33223092.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1405,,thread 1405 (VLLM::Worker_TP),track,,us,33223039.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,728,1393,,thread 1393 (VLLM::Worker_TP),track,,us,33223034.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,4,,stream 4 ,track,,us,33014246.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +0,2,9,,stream 9 ,track,,us,32642511.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank0.1782867650246098214.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,56299.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,10302,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8788.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,us,31.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,us,16.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,36.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,38.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,74.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,26454.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1018,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,us,58.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,2041.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,us,660.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,us,59.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,us,20147.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,49.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,102.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,52349.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,100.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,797.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1541.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12406.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3164843.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1440,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,11357.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1239.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,957121.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81595,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1161.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,764.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1252.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1092470.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81596,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1601612.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81591,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,609736.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81599,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2008.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1508.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,468.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,us,2491423.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,calls,329276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,us,1918442.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,calls,164630,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,us,8828.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,__amd_rocclr_copyBuffer,track_slice,,us,1012922.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,__amd_rocclr_copyBuffer,track_slice,,calls,164860,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10527.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_fwd_kernel,track_slice,,us,2873825.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,_fwd_kernel,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,one_shot_all_reduce_gluon,track_slice,,us,6789128.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,one_shot_all_reduce_gluon,track_slice,,calls,164833,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,persistent_all_gather_gluon,track_slice,,us,167925.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,persistent_all_gather_gluon,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,triton_poi_fused_1,track_slice,,us,583378.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,triton_poi_fused_1,track_slice,,calls,82318,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,triton_poi_fused_2,track_slice,,us,499712.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,triton_poi_fused_2,track_slice,,calls,82318,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8875.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,us,681047.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,us,55299.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61933.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4547.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,18184.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,15119.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,16770.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5573.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,4048.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,17.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,28.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,35.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,18.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5683.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5749.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,11690.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9853.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,6228.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2517907.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,82313,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,509558.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,82316,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4569738.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,553179.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,82312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,2598.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,99.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,5893.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,## Call CompiledFxGraph flb2fp2cntudbsge5z5gwlwzehsv7ifmakhps5znw4aifpvhg6ay ##,track_slice,,us,436.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,## Call CompiledFxGraph flb2fp2cntudbsge5z5gwlwzehsv7ifmakhps5znw4aifpvhg6ay ##,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,## Call CompiledFxGraph fvyvvqoswttmfjhitfa7tf5qn3hedz375utwayd4qd2u5vcmi3as ##,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,## Call CompiledFxGraph fvyvvqoswttmfjhitfa7tf5qn3hedz375utwayd4qd2u5vcmi3as ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,## Call CompiledFxGraph fxp5hm6iknkimwxt3aa7oxfvfsm2sa6ibzut4sr53attb5qdr7gb ##,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,## Call CompiledFxGraph fxp5hm6iknkimwxt3aa7oxfvfsm2sa6ibzut4sr53attb5qdr7gb ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1765.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,998.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,_rocm_C::paged_attention,track_slice,,us,1153.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,_rocm_C::paged_attention,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,_rocm_C::wvSplitK,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::add_rmsnorm,track_slice,,us,662.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::add_rmsnorm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::gemm_a16w16,track_slice,,us,1861.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::get_padded_m,track_slice,,us,29.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::get_padded_m,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::rms_norm,track_slice,,us,22.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::static_per_tensor_quant,track_slice,,us,1073.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::static_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,us,3176.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_local_scalar_dense,track_slice,,us,355.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_local_scalar_dense,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_reshape_alias,track_slice,,us,619.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_reshape_alias,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_scaled_mm,track_slice,,us,105906.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_scaled_mm,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_softmax,track_slice,,us,2998.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_to_copy,track_slice,,us,6808.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_to_copy,track_slice,,calls,6180,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_unsafe_view,track_slice,,us,550.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::_unsafe_view,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::add,track_slice,,us,8874.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::add,track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::add_,track_slice,,us,2399.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::add_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::alias,track_slice,,us,700.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::alias,track_slice,,calls,2629,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::as_strided,track_slice,,us,13528.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::as_strided,track_slice,,calls,61488,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::clone,track_slice,,us,1129.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::clone,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::copy_,track_slice,,us,42510.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::copy_,track_slice,,calls,19576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::detach,track_slice,,us,1491.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::detach,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::detach_,track_slice,,us,112.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::detach_,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::div_,track_slice,,us,4003.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::div_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::empty,track_slice,,us,8839.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::empty,track_slice,,calls,8323,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::empty_like,track_slice,,us,1895.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::empty_like,track_slice,,calls,3839,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::empty_strided,track_slice,,us,12895.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::empty_strided,track_slice,,calls,8990,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::fill_,track_slice,,us,8151.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::fill_,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::flatten,track_slice,,us,1069.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::flatten,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::index,track_slice,,us,18223.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::index,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::index_select,track_slice,,us,1646.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::index_select,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::item,track_slice,,us,1427.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::item,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::lift_fresh,track_slice,,us,311.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::lift_fresh,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::linear,track_slice,,us,1416.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::lt,track_slice,,us,2246.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::lt,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::matmul,track_slice,,us,974.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::mm,track_slice,,us,36528.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::movedim,track_slice,,us,1450.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::movedim,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::permute,track_slice,,us,949.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::permute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::reshape,track_slice,,us,5142.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::reshape,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::resize_,track_slice,,us,1389.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::resize_,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::resolve_conj,track_slice,,us,190.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::resolve_conj,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::resolve_neg,track_slice,,us,124.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::resolve_neg,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::scatter_,track_slice,,us,38.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::scatter_,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::select,track_slice,,us,4585.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::select,track_slice,,calls,4686,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::slice,track_slice,,us,29386.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::slice,track_slice,,calls,49021,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::softmax,track_slice,,us,1417.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::sub,track_slice,,us,5517.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::sub,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::t,track_slice,,us,2962.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::t,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::to,track_slice,,us,4005.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::to,track_slice,,calls,12760,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::transpose,track_slice,,us,2086.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::transpose,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::unbind,track_slice,,us,1092.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::unbind,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::unsqueeze,track_slice,,us,2201.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::unsqueeze,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::view,track_slice,,us,9522.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::view,track_slice,,calls,17953,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::zero_,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,aten::zero_,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,triton_poi_fused_1,track_slice,,us,742.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,triton_poi_fused_1,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,triton_poi_fused_2,track_slice,,us,556.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,triton_poi_fused_2,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,40.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,us,779.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::all_gather,track_slice,,us,2015.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::all_reduce,track_slice,,us,793.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,us,1637.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1637.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,3388.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::unified_attention_with_output,track_slice,,us,729.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,529.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,us,747.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm_aiter::rms_norm,track_slice,,us,19.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cpu_op,vllm_aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipCtxGetCurrent,track_slice,,us,130.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,315.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipDeviceSynchronize,track_slice,,us,46.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipEventDestroy,track_slice,,us,1224.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipEventDestroy,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipEventRecord,track_slice,,us,10292.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipEventRecord,track_slice,,calls,4124,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipEventSynchronize,track_slice,,us,17211958.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipEventSynchronize,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,13352.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2627,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipFuncSetAttribute,track_slice,,us,710.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipFuncSetAttribute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3107.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,7886,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipGraphLaunch,track_slice,,us,772550.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipGraphLaunch,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipHostMalloc,track_slice,,us,205.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipLaunchKernel,track_slice,,us,84768.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipLaunchKernel,track_slice,,calls,20897,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipMemcpyAsync,track_slice,,us,57571.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipMemcpyAsync,track_slice,,calls,12373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,16341.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipPointerGetAttribute,track_slice,,us,2985.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,15618,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3046.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12372,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipStreamWaitEvent,track_slice,,us,5928.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/ki/cki2trdxi4jg424el7wto3deci6wquejd6w4ljks7hqcp6ie77sb.py(586): call,track_slice,,us,224.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/ki/cki2trdxi4jg424el7wto3deci6wquejd6w4ljks7hqcp6ie77sb.py(586): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/kr/ckri4u3ticg3xtpd6upxjtkpvhnsejuicszgvgvminhrwe4npctx.py(196): call,track_slice,,us,149.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/kr/ckri4u3ticg3xtpd6upxjtkpvhnsejuicszgvgvminhrwe4npctx.py(196): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/zr/czras7xk3kunhp7bcipfnbxchel4lyf2jfgtk7amcb5l7rsn7qz5.py(501): call,track_slice,,us,12612.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/zr/czras7xk3kunhp7bcipfnbxchel4lyf2jfgtk7amcb5l7rsn7qz5.py(501): call,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,232.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,474.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,110.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,830.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,895.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1580.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1385.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,106.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,183.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1201.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1416.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1605,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,52.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,217.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3173.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1058.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1312.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1164.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2190,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,4901.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,250.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,28.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,966.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,188.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,35,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,259.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,4713.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,29139,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1616.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3667.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,44655,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1157.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14784,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,68.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,7945.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,126279,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,82.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,129.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1057,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,12674.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,15331.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,357543,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1719.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,32239.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,7135.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,65872,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,591.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,121849.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2797321,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,12280.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,31893,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,7587.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,18694,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,472209.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2793194,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,6648.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2420.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,889.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2509.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,950.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,35.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3374.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1163.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,436.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,115786.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2797322,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,367.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2871.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,192.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,122.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,5190.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,12308,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1598.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1746.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4921,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,8429.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1612.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,613.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,21.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1626.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,791.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1711.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2680.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,8413.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,143838,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,128.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3188.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,66042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,360.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,708.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,252.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,206.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,8944.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,9280,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,4963.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3934.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,26705,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,794.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,5732,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,795.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,6977,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,77.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1390.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,574.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4468,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,6917.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,3857,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1766.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1344.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,14995.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,200578,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1588.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2059,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,5393.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,5145,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1673.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1263.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3585.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3313.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,24134.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,367095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,29.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3032.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2006.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,250.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1610,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,18900.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,66501,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,726.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,7509,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1045.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2238,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,322.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2075,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,759.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,524.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1559.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1199.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1216.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1557.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1247.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,9497,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,191.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,5644.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1110.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,66.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1169.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1881.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2803.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,10619.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2068,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,4670.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,4584.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,6495.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4118,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,692.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,20.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,114.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3612.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,679.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,382.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1338.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2152.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,5155,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1460.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,314.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,108.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,407,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1321.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1504.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3823.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,20745,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2779.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,7847.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,10054.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4522,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,299.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,3482.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1401.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,969.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,907.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,2411.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1791.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,882.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,136.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,459.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,9575.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,12803,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,1210.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,69.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(804): get,track_slice,,us,1910.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(804): get,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(117): __instancecheck__,track_slice,,us,235.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(117): __instancecheck__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(133): _splitext,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(133): _splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(16): exists,track_slice,,us,559.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(16): exists,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(1390): _handle_fromlist,track_slice,,us,430.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(1390): _handle_fromlist,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(645): parent,track_slice,,us,918.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(645): parent,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(709): __getitem__,track_slice,,us,4824.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(709): __getitem__,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(791): encode,track_slice,,us,2118.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(791): encode,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(795): decode,track_slice,,us,712.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(795): decode,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(808): getenv,track_slice,,us,1067.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(808): getenv,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(117): splitext,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(117): splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(169): basename,track_slice,,us,13.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(169): basename,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(41): _get_sep,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(41): _get_sep,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(52): normcase,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(52): normcase,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(0): ,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(0): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(1): ,track_slice,,us,415.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(1): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(1): ,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(1): launcher,track_slice,,us,576.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(1): launcher,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,12.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(2): __eq__,track_slice,,us,970.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(2): __eq__,track_slice,,calls,3072,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(2): __hash__,track_slice,,us,1813.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(2): __hash__,track_slice,,calls,4101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(2): __init__,track_slice,,us,4029.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(2): __init__,track_slice,,calls,7289,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(2): dynamic_func,track_slice,,us,22084.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(2): dynamic_func,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,21.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(404): execution_fn,track_slice,,us,6627.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(404): execution_fn,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,13.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,calls,168,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1326): caller,track_slice,,us,336.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1326): caller,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,us,22.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,us,9254.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1685): ,track_slice,,us,558.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1685): ,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1686): ,track_slice,,us,966.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1686): ,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,us,1566.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,us,1930.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,us,566.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,us,746.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,us,652.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,us,666.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,us,5363.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,us,6235.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,us,175.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,us,218.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,us,818.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,us,6075.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,us,795.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,us,714.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,us,12405.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(104): __init__,track_slice,,us,5661.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(104): __init__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(132): __enter__,track_slice,,us,3088.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(132): __enter__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(141): __exit__,track_slice,,us,2683.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(141): __exit__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(299): helper,track_slice,,us,3466.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(299): helper,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(772): __init__,track_slice,,us,539.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(772): __init__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(775): __enter__,track_slice,,us,495.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(775): __enter__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(778): __exit__,track_slice,,us,392.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,contextlib.py(778): __exit__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,copy.py(247): _reconstruct,track_slice,,us,1665.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,copy.py(247): _reconstruct,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,copy.py(61): copy,track_slice,,us,3491.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,copy.py(61): copy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,copyreg.py(98): __newobj__,track_slice,,us,446.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,us,1689.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,us,9447.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,us,9746.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,us,573.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,us,9063.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,us,732.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,us,3522.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,ctypes/__init__.py(517): cast,track_slice,,us,4034.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,ctypes/__init__.py(517): cast,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(1128): __new__,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(1128): __new__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(1266): __hash__,track_slice,,us,1029.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(1266): __hash__,track_slice,,calls,10276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(1291): value,track_slice,,us,288.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(1291): value,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(202): __get__,track_slice,,us,1531.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(202): __get__,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(720): __call__,track_slice,,us,30.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,enum.py(720): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,functools.py(982): __get__,track_slice,,us,1087.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,functools.py(982): __get__,track_slice,,calls,1093,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(2796): name,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(2796): name,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(2808): kind,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(2808): kind,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(2888): __init__,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(2888): __init__,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(2949): apply_defaults,track_slice,,us,29.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(2949): apply_defaults,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(3089): parameters,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(3089): parameters,track_slice,,calls,28,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(3133): _bind,track_slice,,us,154.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(3133): _bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(3275): bind,track_slice,,us,16.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,inspect.py(3275): bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,us,3838.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,us,6254.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,us,847.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,us,128.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/iris.py(1092): get_rank,track_slice,,us,63.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/iris.py(1092): get_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,us,38.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/iris.py(1173): all_gather,track_slice,,us,1057.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/iris.py(1173): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/iris.py(960): get_device_context,track_slice,,us,71.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/iris.py(960): get_device_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,us,394.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,us,2398.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,us,292.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,json/__init__.py(183): dumps,track_slice,,us,13.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,json/__init__.py(183): dumps,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,json/encoder.py(105): __init__,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,json/encoder.py(183): encode,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,json/encoder.py(183): encode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,json/encoder.py(205): iterencode,track_slice,,us,41.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,json/encoder.py(205): iterencode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1011): handle,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1011): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1137): flush,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1137): flush,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1148): emit,track_slice,,us,36.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1148): emit,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1517): debug,track_slice,,us,599.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2063,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1529): info,track_slice,,us,19.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1529): info,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,31.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,17.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1660): _log,track_slice,,us,31.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1660): _log,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1686): handle,track_slice,,us,18.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1686): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(170): ,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(170): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,13.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,738.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,3099,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,22.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(298): __init__,track_slice,,us,130.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(298): __init__,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(383): getMessage,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(447): usesTime,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(455): _format,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(455): _format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(462): format,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(462): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(668): usesTime,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(690): format,track_slice,,us,28.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(690): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(831): filter,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(831): filter,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(968): acquire,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(968): acquire,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(975): release,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(975): release,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(988): format,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,logging/__init__.py(988): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,17.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/process.py(108): run,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/process.py(189): name,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/process.py(189): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,577.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,23.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1286.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,nn.Module: Sampler_0,track_slice,,us,1415.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,nn.Module: Sampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,997.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,588.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,71.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,410.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,74.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,558.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,154.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,966.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1725.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,92.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2840.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,queue.py(122): put,track_slice,,us,19.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,queue.py(213): _put,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1012): run,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1182): name,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1182): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1485): current_thread,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(1485): current_thread,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(299): __enter__,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(302): __exit__,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(314): _is_owned,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(394): notify,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_compile.py(42): inner,track_slice,,us,30.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_compile.py(42): inner,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,293.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,84.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,64.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,102.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,35.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,479.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,197.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,957.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,86.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4274.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,28.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,263.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,871.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,115.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1448.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,34.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,1627.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,1302.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,395.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,64.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,5915.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,178.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,315.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,159.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,3944.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,2471.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,624.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,20105,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1079): __call__,track_slice,,us,625.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,999.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,677.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1145): ,track_slice,,us,508.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1145): ,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1257): __call__,track_slice,,us,2812.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,9971,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(864): __call__,track_slice,,us,851.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_ops.py(864): __call__,track_slice,,calls,4810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,517.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_tensor.py(1203): __iter__,track_slice,,us,1069.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_tensor.py(1203): __iter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,1213.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,2937.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,1520.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(823): ,track_slice,,us,856.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(823): ,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,5176.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3347.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2312.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7366.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1438.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2757.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,146.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,42.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1038.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1443.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3241.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,360.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,905.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2598.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,6315.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,1359.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,11462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,1315.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,2600.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1489.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1931.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,37.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,89.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,105.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,232.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1179.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1625.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,704.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,408.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,459.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,855.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,7042.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,6136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,811.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,13.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,436.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(199): record,track_slice,,us,489.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,261.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,5369.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,301.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1219.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,994.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,20.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,19.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,20.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,39.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,12.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,8.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,58.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,4951.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2904.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,5721,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,40.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,47.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/storage.py(74): size,track_slice,,us,1231.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/storage.py(74): size,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,598.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,43.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,152.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,18903.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,76.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch_guard.py(205): wrapper,track_slice,,us,1029.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch_guard.py(205): wrapper,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch_guard.py(286): wrapper_custom,track_slice,,us,2928.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch_guard.py(286): wrapper_custom,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch_guard.py(309): outer_wrapper,track_slice,,us,1055.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch_guard.py(309): outer_wrapper,track_slice,,calls,3432,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/__init__.py(67): cdiv,track_slice,,us,78.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,253.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,us,8560.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,us,9451.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,us,2807.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,us,203.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,3250.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,234.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,us,246.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/compiler/compiler.py(476): run,track_slice,,us,148.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/compiler/compiler.py(476): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,us,3853.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/knobs.py(130): get,track_slice,,us,1071.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/knobs.py(130): get,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/knobs.py(422): __call__,track_slice,,us,1695.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/knobs.py(422): __call__,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/knobs.py(75): __get__,track_slice,,us,3882.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/knobs.py(75): __get__,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,us,804.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,275.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/driver.py(36): active,track_slice,,us,346.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,us,1712.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,us,544.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(370): ,track_slice,,us,7225.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(370): ,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,us,5098.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(708): run,track_slice,,us,32323.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,triton/runtime/jit.py(708): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1174): __init__,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1215): __setattr__,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1269): __init__,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1273): ,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(166): _type_convert,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(175): _type_check,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(2187): cast,track_slice,,us,1997.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(2187): cast,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(2344): get_origin,track_slice,,us,31.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(2344): get_origin,track_slice,,calls,57,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(2374): get_args,track_slice,,us,20.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(2374): get_args,track_slice,,calls,56,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(317): _deduplicate,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(392): inner,track_slice,,us,629.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(392): inner,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(494): __repr__,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(515): __getitem__,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(694): Union,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(730): ,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(747): Optional,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(892): __init__,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(962): __eq__,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(971): __hash__,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,us,830.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1256.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,us,60.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,us,99.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,us,704.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1731.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,497.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,308.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,535.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,110.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,226.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,417.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6318.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1434,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,66.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,41.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,17.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,794.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,757.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,797.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,20.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,975.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2652.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,662.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,261.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,415.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,89.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,548.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,994.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,us,1073.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,us,1041.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,289.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1428.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,592.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,238.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,425.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,611807.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,2793199,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1508.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,552.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2438.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,378.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,858.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,101166.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,2793199,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,67921.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,2793199,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,2403864.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,422052.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,2795260,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,413508.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,2797321,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5189.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,8976.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,103.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,272.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,529.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,us,62.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,us,367.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,calls,5147,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,776.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,188.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,336.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,464.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,473.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,us,233.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,us,2372.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,us,429.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,201622.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,2793194,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,103.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,309.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,121.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2239,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,97.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,1956.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,218.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,194.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,3844.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,678.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,us,924.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,us,74.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,933.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,973.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,868.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,448.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,243.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,1114.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,608.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,4685.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,1409.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12681.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1381.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,493.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2175.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,3216.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,31.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2494.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,76.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,33.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,58.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,846.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4512,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,92.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,48.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,102.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,2056,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,278.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,3429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,495.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,56.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,618.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,773.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,148.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,499.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(579): ,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(584): ,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,17.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,16.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1170.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,86.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,1113.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,122.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2646.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4120.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1069.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1121.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,4775.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2100.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,215.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,13794.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,209.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3253.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7236.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2618.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5659.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,7786.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,112.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,443.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,42.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,622.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,84.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,116.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,98.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,22.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,424.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,330.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,373.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,267.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,us,2586.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,us,3914.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,us,277.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,778.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3264.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2388.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,60.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,6243.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,10766.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,154.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,18,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,2925.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9263,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14280.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3597.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4162,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,19.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,51.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,21.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3221.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,459.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,768.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1277.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4098,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,23.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,13.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,511.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,410.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,163.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,31.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,191.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,204.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,121.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,651.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5223,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,16.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,40,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16357.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,57.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9603.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,22472.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,351.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,22.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,720.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6221.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2578.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,251.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1461.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,309.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,84.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,272994.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,113.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6083.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11149.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,177241.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,163.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,116376.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,23569.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2029.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6814.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4839.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,218.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,509.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3591.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2335.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,151691.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,425.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,364.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1284.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,178.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3239.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,838.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5893.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,2921.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,65275.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2158.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,433.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,504.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,30413.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,162.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2547.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,519.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7413.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,8.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,723.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,46.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,262.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,162.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,90.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,826.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7680276.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,23285305.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,8.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(120): update,track_slice,,us,15.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(17): __init__,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(21): __enter__,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(27): __exit__,track_slice,,us,20.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(37): __init__,track_slice,,us,26.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,16.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(63): __iter__,track_slice,,us,47.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(95): copy,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(299): __enter__,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(302): __exit__,track_slice,,us,6.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(308): _release_save,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(311): _acquire_restore,track_slice,,us,55.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(314): _is_owned,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(323): wait,track_slice,,us,45.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(359): wait,track_slice,,us,9938602.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(601): is_set,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(637): wait,track_slice,,us,22.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(655): wait,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,20.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/_monitor.py(69): run,track_slice,,us,73.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(100): acquire,track_slice,,us,18.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(104): release,track_slice,,us,13.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(108): __enter__,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(111): __exit__,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(759): get_lock,track_slice,,us,5.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,33.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,16.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,33223320.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,(117): __instancecheck__,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,contextlib.py(104): __init__,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,contextlib.py(132): __enter__,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,contextlib.py(141): __exit__,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,contextlib.py(299): helper,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,queue.py(154): get,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,queue.py(171): get,track_slice,,us,23.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,queue.py(209): _qsize,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,queue.py(217): _get,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(1012): run,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(299): __enter__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(302): __exit__,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(308): _release_save,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(311): _acquire_restore,track_slice,,us,47.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(314): _is_owned,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(323): wait,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(355): wait,track_slice,,us,667.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(394): notify,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,16.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,55.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,19.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,43.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,23286936.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(120): update,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(21): __enter__,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(27): __exit__,track_slice,,us,25.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(37): __init__,track_slice,,us,27.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,27.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(63): __iter__,track_slice,,us,54.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(95): copy,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(1032): _bootstrap,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(299): __enter__,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(302): __exit__,track_slice,,us,8.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(308): _release_save,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(311): _acquire_restore,track_slice,,us,69.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(314): _is_owned,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(323): wait,track_slice,,us,51.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(359): wait,track_slice,,us,9936939.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(601): is_set,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(637): wait,track_slice,,us,27.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(655): wait,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/_monitor.py(69): run,track_slice,,us,88.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(100): acquire,track_slice,,us,45.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(104): release,track_slice,,us,17.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(108): __enter__,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(111): __exit__,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(759): get_lock,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,119848,119858,Trace,PyTorch Profiler (0),track_slice,,us,33224626.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,119848,119858,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,119848,119858,,PyTorch Profiler,track,,us,33224626.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,791,,thread 791 (VLLM::Worker_TP),track,,us,33224420.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1477,,thread 1477 (VLLM::Worker_TP),track,,us,33224500.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1442,,thread 1442 (VLLM::Worker_TP),track,,us,33224409.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,791,1397,,thread 1397 (VLLM::Worker_TP),track,,us,33224403.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,4,,stream 4 ,track,,us,33057600.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +6,8,9,,stream 9 ,track,,us,32685558.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank6.1782867468136316044.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,57064.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,10302,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8780.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,us,29.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,35.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,36.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,58.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,27020.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1018,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,us,59.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,1949.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,us,661.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,us,661.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,us,19409.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,49.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,121.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,51326.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,98.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,781.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1540.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12431.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3197220.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1440,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,11546.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1233.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,967042.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81597,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1146.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,773.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1257.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1107138.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81595,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1627380.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81587,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,615356.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81596,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2011.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1486.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,453.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,us,2497288.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,calls,329269,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,us,1912921.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,calls,164635,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,us,8799.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,__amd_rocclr_copyBuffer,track_slice,,us,1019135.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,__amd_rocclr_copyBuffer,track_slice,,calls,164861,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10576.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_fwd_kernel,track_slice,,us,2870214.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,_fwd_kernel,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,one_shot_all_reduce_gluon,track_slice,,us,6771918.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,one_shot_all_reduce_gluon,track_slice,,calls,164831,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,persistent_all_gather_gluon,track_slice,,us,168508.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,persistent_all_gather_gluon,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,triton_poi_fused_1,track_slice,,us,584294.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,triton_poi_fused_1,track_slice,,calls,82314,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,triton_poi_fused_2,track_slice,,us,499588.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,triton_poi_fused_2,track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,9014.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,us,682229.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,82318,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,us,54845.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61848.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,15.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4549.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,18320.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,14898.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,16556.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5647.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,4122.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,27.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,33.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,16.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5755.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5769.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,11662.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,10017.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,6328.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2525072.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,82304,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,509983.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,82316,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4549880.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,558132.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,82316,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,2592.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,105.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,5869.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,## Call CompiledFxGraph ffi6ua3l7wufetxpaieo6sgndvr3dgweurdlrq7loux4hjgto5u3 ##,track_slice,,us,409.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,## Call CompiledFxGraph ffi6ua3l7wufetxpaieo6sgndvr3dgweurdlrq7loux4hjgto5u3 ##,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,## Call CompiledFxGraph futk64wawfmpy7um36bcbfuiocrbdwyhewwp3u34iz76ajx4tamg ##,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,## Call CompiledFxGraph futk64wawfmpy7um36bcbfuiocrbdwyhewwp3u34iz76ajx4tamg ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,## Call CompiledFxGraph fzqdbqsvyaad6bez5tziwnvgcxcs4f57wrfkaailt6ieguymastx ##,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,## Call CompiledFxGraph fzqdbqsvyaad6bez5tziwnvgcxcs4f57wrfkaailt6ieguymastx ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1706.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,991.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,_rocm_C::paged_attention,track_slice,,us,1088.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,_rocm_C::paged_attention,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,_rocm_C::wvSplitK,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::add_rmsnorm,track_slice,,us,665.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::add_rmsnorm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::gemm_a16w16,track_slice,,us,1835.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::get_padded_m,track_slice,,us,29.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::get_padded_m,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::rms_norm,track_slice,,us,22.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::static_per_tensor_quant,track_slice,,us,1060.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::static_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,us,3056.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_local_scalar_dense,track_slice,,us,345.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_local_scalar_dense,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_reshape_alias,track_slice,,us,545.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_reshape_alias,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_scaled_mm,track_slice,,us,103864.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_scaled_mm,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_softmax,track_slice,,us,2867.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_to_copy,track_slice,,us,6794.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_to_copy,track_slice,,calls,6180,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_unsafe_view,track_slice,,us,560.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::_unsafe_view,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::add,track_slice,,us,8809.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::add,track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::add_,track_slice,,us,2333.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::add_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::alias,track_slice,,us,661.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::alias,track_slice,,calls,2629,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::as_strided,track_slice,,us,13904.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::as_strided,track_slice,,calls,61488,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::clone,track_slice,,us,1182.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::clone,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::copy_,track_slice,,us,40768.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::copy_,track_slice,,calls,19576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::detach,track_slice,,us,1483.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::detach,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::detach_,track_slice,,us,111.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::detach_,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::div_,track_slice,,us,3920.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::div_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::empty,track_slice,,us,8497.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::empty,track_slice,,calls,8323,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::empty_like,track_slice,,us,1847.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::empty_like,track_slice,,calls,3839,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::empty_strided,track_slice,,us,12719.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::empty_strided,track_slice,,calls,8990,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::fill_,track_slice,,us,8076.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::fill_,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::flatten,track_slice,,us,1004.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::flatten,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::index,track_slice,,us,17918.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::index,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::index_select,track_slice,,us,1518.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::index_select,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::item,track_slice,,us,1456.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::item,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::lift_fresh,track_slice,,us,371.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::lift_fresh,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::linear,track_slice,,us,1411.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::lt,track_slice,,us,2191.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::lt,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::matmul,track_slice,,us,986.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::mm,track_slice,,us,35921.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::movedim,track_slice,,us,1461.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::movedim,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::permute,track_slice,,us,936.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::permute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::reshape,track_slice,,us,5143.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::reshape,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::resize_,track_slice,,us,1326.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::resize_,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::resolve_conj,track_slice,,us,178.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::resolve_conj,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::resolve_neg,track_slice,,us,121.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::resolve_neg,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::scatter_,track_slice,,us,38.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::scatter_,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::select,track_slice,,us,4445.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::select,track_slice,,calls,4686,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::slice,track_slice,,us,29551.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::slice,track_slice,,calls,49021,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::softmax,track_slice,,us,1397.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::sub,track_slice,,us,5224.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::sub,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::t,track_slice,,us,2817.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::t,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::to,track_slice,,us,3764.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::to,track_slice,,calls,12760,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::transpose,track_slice,,us,2030.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::transpose,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::unbind,track_slice,,us,1074.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::unbind,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::unsqueeze,track_slice,,us,2160.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::unsqueeze,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::view,track_slice,,us,9490.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::view,track_slice,,calls,17953,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::zero_,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,aten::zero_,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,triton_poi_fused_1,track_slice,,us,717.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,triton_poi_fused_1,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,triton_poi_fused_2,track_slice,,us,570.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,triton_poi_fused_2,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,39.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,us,749.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::all_gather,track_slice,,us,2056.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::all_reduce,track_slice,,us,782.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,us,1592.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1642.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,3321.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::unified_attention_with_output,track_slice,,us,716.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,528.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,us,762.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm_aiter::rms_norm,track_slice,,us,19.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cpu_op,vllm_aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipCtxGetCurrent,track_slice,,us,156.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,323.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipDeviceSynchronize,track_slice,,us,37.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipEventDestroy,track_slice,,us,1196.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipEventDestroy,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipEventRecord,track_slice,,us,9859.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipEventRecord,track_slice,,calls,4124,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipEventSynchronize,track_slice,,us,17492067.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipEventSynchronize,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,12703.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2627,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipFuncSetAttribute,track_slice,,us,445.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipFuncSetAttribute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3071.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,7886,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipGraphLaunch,track_slice,,us,783862.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipGraphLaunch,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipHostMalloc,track_slice,,us,320.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipLaunchKernel,track_slice,,us,80958.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipLaunchKernel,track_slice,,calls,20897,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipMemcpyAsync,track_slice,,us,56210.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipMemcpyAsync,track_slice,,calls,12373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,15551.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipPointerGetAttribute,track_slice,,us,2977.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,15618,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3009.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12372,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipStreamWaitEvent,track_slice,,us,5832.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/ho/choqvwobpre6vkefxk3ac5oh2htbiib4yjc2b5ft7kn6vtmvbobb.py(196): call,track_slice,,us,148.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/ho/choqvwobpre6vkefxk3ac5oh2htbiib4yjc2b5ft7kn6vtmvbobb.py(196): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/lt/clt6aql2utj5tzvorjvboxutun6tiilq5im2eutf5vkz6niun6pg.py(586): call,track_slice,,us,238.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/lt/clt6aql2utj5tzvorjvboxutun6tiilq5im2eutf5vkz6niun6pg.py(586): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/o4/co4hchdsvsxdpfa6frunpi7bqalrcufjyorx5q7lyduhtnyj6ysr.py(501): call,track_slice,,us,12388.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/o4/co4hchdsvsxdpfa6frunpi7bqalrcufjyorx5q7lyduhtnyj6ysr.py(501): call,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,222.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,455.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,112.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,885.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,868.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1510.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1261.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,108.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,151.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1180.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1383.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1605,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,52.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,202.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2990.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1020.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1331.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1210.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2190,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,4796.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,248.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,29.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,17.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,914.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,217.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,35,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,270.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,4876.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,29139,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1613.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3721.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,44655,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1090.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14784,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,62.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,8144.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,126279,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,81.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,136.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1057,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,13294.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,15516.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,357543,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1689.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,32183.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,7056.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,65872,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,572.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,116543.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2647525,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,12415.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,31893,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,7513.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,18694,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,450801.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2643398,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,6572.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2570.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2495.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,901.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,34.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,922.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3261.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1157.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,412.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,109790.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2647526,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,353.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2925.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,181.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,112.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,5114.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,12308,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1440.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1831.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4921,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,8258.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1558.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,611.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,21.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1576.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,794.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1601.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2726.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,23.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,8340.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,143838,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,127.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3330.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,66042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,381.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,678.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,222.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,196.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,9053.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,9280,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,4743.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3950.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,26705,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,780.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,5732,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,811.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,6977,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,50.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1457.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,584.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4468,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,6640.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,3857,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1691.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1312.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,15039.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,200578,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1557.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2059,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,5273.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,5145,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1618.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1244.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3534.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3322.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,23909.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,367095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,32.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2992.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2042.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,241.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1610,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,18709.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,66501,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,720.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,7509,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1018.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2238,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,334.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2075,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,751.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,539.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1544.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1211.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1230.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1554.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1254.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,9497,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,201.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,5539.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1086.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,50.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1130.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1783.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2674.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,10580.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2068,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,4572.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,4262.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,6424.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4118,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,699.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,6.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,20.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,128.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3478.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,723.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,525.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1258.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2100.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,5155,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1463.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,319.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,105.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,407,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1461.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1393.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3681.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,20745,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2882.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,7600.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,9798.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4522,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,280.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,3355.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1393.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,945.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,933.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,2284.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1940.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,868.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,123.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,446.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,8977.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,12803,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,1205.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,76.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(804): get,track_slice,,us,1856.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(804): get,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(117): __instancecheck__,track_slice,,us,214.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(117): __instancecheck__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(133): _splitext,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(133): _splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(16): exists,track_slice,,us,548.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(16): exists,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(1390): _handle_fromlist,track_slice,,us,391.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(1390): _handle_fromlist,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(645): parent,track_slice,,us,900.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(645): parent,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(709): __getitem__,track_slice,,us,4955.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(709): __getitem__,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(791): encode,track_slice,,us,2128.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(791): encode,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(795): decode,track_slice,,us,662.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(795): decode,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(808): getenv,track_slice,,us,1094.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(808): getenv,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(117): splitext,track_slice,,us,17.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(117): splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(169): basename,track_slice,,us,15.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(169): basename,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(41): _get_sep,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(41): _get_sep,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(52): normcase,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(52): normcase,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(0): ,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(0): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(1): ,track_slice,,us,415.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(1): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(1): ,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(1): launcher,track_slice,,us,573.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(1): launcher,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(2): __eq__,track_slice,,us,958.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(2): __eq__,track_slice,,calls,3072,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(2): __hash__,track_slice,,us,1670.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(2): __hash__,track_slice,,calls,4101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(2): __init__,track_slice,,us,4063.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(2): __init__,track_slice,,calls,7289,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(2): dynamic_func,track_slice,,us,22097.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(2): dynamic_func,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,14.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,22.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(404): execution_fn,track_slice,,us,6639.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(404): execution_fn,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,15.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,calls,168,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1326): caller,track_slice,,us,342.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1326): caller,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,us,6.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,us,8991.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1685): ,track_slice,,us,535.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1685): ,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1686): ,track_slice,,us,943.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1686): ,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,us,1440.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,us,1833.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,us,509.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,us,743.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,us,650.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,us,643.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,us,5234.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,us,6190.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,us,174.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,us,219.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,us,827.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,us,5855.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,us,785.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,us,677.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,us,12703.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(104): __init__,track_slice,,us,5643.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(104): __init__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(132): __enter__,track_slice,,us,3060.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(132): __enter__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(141): __exit__,track_slice,,us,2585.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(141): __exit__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(299): helper,track_slice,,us,3379.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(299): helper,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(772): __init__,track_slice,,us,500.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(772): __init__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(775): __enter__,track_slice,,us,587.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(775): __enter__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(778): __exit__,track_slice,,us,390.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,contextlib.py(778): __exit__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,copy.py(247): _reconstruct,track_slice,,us,1734.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,copy.py(247): _reconstruct,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,copy.py(61): copy,track_slice,,us,3396.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,copy.py(61): copy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,copyreg.py(98): __newobj__,track_slice,,us,435.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,us,1623.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,us,9358.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,us,9070.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,us,573.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,us,8944.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,us,721.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,us,3463.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,ctypes/__init__.py(517): cast,track_slice,,us,3915.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,ctypes/__init__.py(517): cast,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(1128): __new__,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(1128): __new__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(1266): __hash__,track_slice,,us,1050.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(1266): __hash__,track_slice,,calls,10276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(1291): value,track_slice,,us,280.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(1291): value,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(202): __get__,track_slice,,us,1576.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(202): __get__,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(720): __call__,track_slice,,us,32.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,enum.py(720): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,functools.py(982): __get__,track_slice,,us,1058.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,functools.py(982): __get__,track_slice,,calls,1093,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(2796): name,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(2796): name,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(2808): kind,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(2808): kind,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(2888): __init__,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(2888): __init__,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(2949): apply_defaults,track_slice,,us,31.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(2949): apply_defaults,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(3089): parameters,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(3089): parameters,track_slice,,calls,28,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(3133): _bind,track_slice,,us,159.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(3133): _bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(3275): bind,track_slice,,us,17.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,inspect.py(3275): bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,us,3918.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,us,6231.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,us,843.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,us,125.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/iris.py(1092): get_rank,track_slice,,us,60.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/iris.py(1092): get_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,us,33.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/iris.py(1173): all_gather,track_slice,,us,1057.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/iris.py(1173): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/iris.py(960): get_device_context,track_slice,,us,66.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/iris.py(960): get_device_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,us,363.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,us,2326.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,us,297.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,json/__init__.py(183): dumps,track_slice,,us,8.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,json/__init__.py(183): dumps,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,json/encoder.py(105): __init__,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,json/encoder.py(183): encode,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,json/encoder.py(183): encode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,json/encoder.py(205): iterencode,track_slice,,us,23.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,json/encoder.py(205): iterencode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1011): handle,track_slice,,us,20.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1011): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1137): flush,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1137): flush,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1148): emit,track_slice,,us,36.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1148): emit,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1517): debug,track_slice,,us,550.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2063,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1529): info,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1529): info,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,32.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,17.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1660): _log,track_slice,,us,36.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1660): _log,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1686): handle,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1686): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(170): ,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(170): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,581.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,3099,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,23.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(298): __init__,track_slice,,us,132.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(298): __init__,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(383): getMessage,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(447): usesTime,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(455): _format,track_slice,,us,17.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(455): _format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(462): format,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(462): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(668): usesTime,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(690): format,track_slice,,us,26.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(690): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(831): filter,track_slice,,us,6.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(831): filter,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(968): acquire,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(968): acquire,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(975): release,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(975): release,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(988): format,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,logging/__init__.py(988): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/process.py(189): name,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/process.py(189): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,592.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,23.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1380.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,nn.Module: Sampler_0,track_slice,,us,1309.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,nn.Module: Sampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,889.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,571.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,74.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,421.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,77.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,538.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,139.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,905.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1766.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,95.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2821.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,queue.py(122): put,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,queue.py(213): _put,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1012): run,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1182): name,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1182): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1485): current_thread,track_slice,,us,6.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(1485): current_thread,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(299): __enter__,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(302): __exit__,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(314): _is_owned,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(394): notify,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_compile.py(42): inner,track_slice,,us,31.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_compile.py(42): inner,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,293.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,91.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,58.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,101.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,38.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,468.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,178.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,942.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,85.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4186.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,28.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,240.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,822.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,115.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1451.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,36.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,1559.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,1334.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,377.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,65.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,5854.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,180.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,304.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,169.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,3955.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,2499.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,579.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,20105,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1079): __call__,track_slice,,us,624.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,965.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,664.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1145): ,track_slice,,us,498.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1145): ,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1257): __call__,track_slice,,us,2608.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,9971,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(864): __call__,track_slice,,us,873.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_ops.py(864): __call__,track_slice,,calls,4810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,492.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_tensor.py(1203): __iter__,track_slice,,us,1046.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_tensor.py(1203): __iter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,1181.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,2914.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,1533.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(823): ,track_slice,,us,854.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(823): ,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,5148.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3474.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2183.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7010.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1336.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2661.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,137.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,29.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1015.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1378.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,2782.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,420.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,890.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2550.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,6044.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,1318.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,11462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,1295.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,2594.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1468.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,2009.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,38.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,91.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,104.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,210.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1238.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1653.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,684.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,425.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,472.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,855.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,6878.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,6136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,800.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,448.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(199): record,track_slice,,us,529.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,321.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,5532.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,277.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1219.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,904.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,5.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,14.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,23.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,46.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5291.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2370.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,5721,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,23.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,31.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/storage.py(74): size,track_slice,,us,1398.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/storage.py(74): size,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,623.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,46.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,148.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,19074.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,79.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch_guard.py(205): wrapper,track_slice,,us,992.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch_guard.py(205): wrapper,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch_guard.py(286): wrapper_custom,track_slice,,us,2880.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch_guard.py(286): wrapper_custom,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch_guard.py(309): outer_wrapper,track_slice,,us,1021.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch_guard.py(309): outer_wrapper,track_slice,,calls,3432,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,us,13.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/__init__.py(67): cdiv,track_slice,,us,70.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,249.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,us,8520.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,us,9348.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,us,2656.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,us,215.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,3339.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,246.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,us,319.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/compiler/compiler.py(476): run,track_slice,,us,137.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/compiler/compiler.py(476): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,us,3659.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/knobs.py(130): get,track_slice,,us,1131.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/knobs.py(130): get,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/knobs.py(422): __call__,track_slice,,us,1832.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/knobs.py(422): __call__,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/knobs.py(75): __get__,track_slice,,us,3768.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/knobs.py(75): __get__,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,us,796.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,261.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/driver.py(36): active,track_slice,,us,341.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,us,1613.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,us,531.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(370): ,track_slice,,us,7010.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(370): ,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,us,4992.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(708): run,track_slice,,us,32375.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,triton/runtime/jit.py(708): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1174): __init__,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1215): __setattr__,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1269): __init__,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1273): ,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(166): _type_convert,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(175): _type_check,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(2187): cast,track_slice,,us,1940.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(2187): cast,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(2344): get_origin,track_slice,,us,31.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(2344): get_origin,track_slice,,calls,57,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(2374): get_args,track_slice,,us,21.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(2374): get_args,track_slice,,calls,56,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(317): _deduplicate,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(392): inner,track_slice,,us,661.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(392): inner,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(494): __repr__,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(515): __getitem__,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(694): Union,track_slice,,us,13.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(730): ,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(747): Optional,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(892): __init__,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(962): __eq__,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(971): __hash__,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,us,835.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1197.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,us,67.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,us,97.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,us,629.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1506.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,477.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,318.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,527.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,104.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,227.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,395.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6265.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1434,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,67.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,40.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,16.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,786.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,713.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,815.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,15.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,969.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2391.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,608.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,255.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,429.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,86.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,518.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,907.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,us,1032.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,us,1031.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,266.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1490.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,585.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,222.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,449.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,586370.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,2643403,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1505.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,550.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2516.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,357.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,870.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,91847.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,2643403,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,69940.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,2643403,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,2311009.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,407399.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,2645464,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,387572.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,2647525,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5230.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,8728.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,105.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,234.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,515.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,us,77.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,us,366.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,calls,5147,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,829.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,172.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,339.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,473.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,462.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,us,226.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,us,2260.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,us,415.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,206656.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,2643398,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,97.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,319.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,109.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2239,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,91.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,1891.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,199.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,178.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,4117.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,658.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,us,915.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,us,71.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,894.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,954.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,870.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,458.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,239.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,890.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,591.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,4542.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,1256.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12563.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1396.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,458.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2306.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,3391.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,35.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2069.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,80.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,42.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,58.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,647.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4512,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,80.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,40.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,95.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,2056,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,272.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,3429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,490.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,54.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,71.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,589.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,781.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,149.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,507.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(579): ,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1168.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,91.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,999.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,119.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2575.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4119.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1053.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1057.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,4693.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2064.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,208.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,13948.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,201.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3046.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7106.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2505.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5431.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,7674.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,121.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,429.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,38.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,634.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,92.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,133.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,90.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,24.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,426.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,323.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,355.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,263.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,28.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,us,2429.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,us,3903.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,us,263.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,826.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3209.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2480.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,54.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,5880.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,10617.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,159.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,18,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,2873.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9263,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14237.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3505.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4162,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,18.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,51.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,20.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3336.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,416.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,762.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1266.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4098,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,24.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,14.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,537.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,394.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,173.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,30.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,152.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,206.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,133.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,654.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5223,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,18.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,40,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16330.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,56.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9606.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,21882.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,358.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,22.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,713.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6071.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2488.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,255.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1439.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,293.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,86.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,271073.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,101.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,5808.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11191.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,176481.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,189.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,116133.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,23528.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2039.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6916.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4713.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,261.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,510.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3644.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2142.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,151081.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,411.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,380.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1188.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,175.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3227.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,846.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5715.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,2787.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,64482.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2089.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,390.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,467.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,29965.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,156.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2558.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,550.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7386.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,691.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,52.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,263.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,178.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,107.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,776.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7686489.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,23385794.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(120): update,track_slice,,us,15.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(27): __exit__,track_slice,,us,17.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(37): __init__,track_slice,,us,25.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,18.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(63): __iter__,track_slice,,us,45.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(95): copy,track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(299): __enter__,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(302): __exit__,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(308): _release_save,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(311): _acquire_restore,track_slice,,us,69.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(314): _is_owned,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(323): wait,track_slice,,us,57.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(359): wait,track_slice,,us,9907979.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(601): is_set,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(637): wait,track_slice,,us,24.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(655): wait,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,19.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/_monitor.py(69): run,track_slice,,us,75.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(100): acquire,track_slice,,us,19.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(104): release,track_slice,,us,14.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(108): __enter__,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(759): get_lock,track_slice,,us,6.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,34.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,13.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,33293460.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,(117): __instancecheck__,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,contextlib.py(104): __init__,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,contextlib.py(132): __enter__,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,contextlib.py(141): __exit__,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,contextlib.py(299): helper,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,queue.py(154): get,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,queue.py(171): get,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,queue.py(209): _qsize,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,queue.py(217): _get,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(1012): run,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(299): __enter__,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(302): __exit__,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(308): _release_save,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(311): _acquire_restore,track_slice,,us,53.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(314): _is_owned,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(323): wait,track_slice,,us,12.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(355): wait,track_slice,,us,418.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(394): notify,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,51.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,19.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,79.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,23406071.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(120): update,track_slice,,us,16.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(17): __init__,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(21): __enter__,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(27): __exit__,track_slice,,us,21.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(37): __init__,track_slice,,us,23.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(63): __iter__,track_slice,,us,52.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(95): copy,track_slice,,us,15.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(299): __enter__,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(302): __exit__,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(308): _release_save,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(311): _acquire_restore,track_slice,,us,71.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(314): _is_owned,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(323): wait,track_slice,,us,48.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(359): wait,track_slice,,us,9887754.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(601): is_set,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(637): wait,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(655): wait,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,20.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/_monitor.py(69): run,track_slice,,us,82.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(100): acquire,track_slice,,us,27.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(104): release,track_slice,,us,14.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(108): __enter__,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(111): __exit__,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(759): get_lock,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,119848,119858,Trace,PyTorch Profiler (0),track_slice,,us,33294432.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,119848,119858,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,119848,119858,,PyTorch Profiler,track,,us,33294432.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,774,,thread 774 (VLLM::Worker_TP),track,,us,33294323.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1475,,thread 1475 (VLLM::Worker_TP),track,,us,33294366.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1445,,thread 1445 (VLLM::Worker_TP),track,,us,33294317.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,774,1396,,thread 1396 (VLLM::Worker_TP),track,,us,33294312.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,4,,stream 4 ,track,,us,33127146.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +5,7,9,,stream 9 ,track,,us,32755140.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank5.1782867465372423940.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,27021.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,10302,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8852.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,us,597.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,us,16.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,719.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,792.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,1666.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,668102.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1018,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,us,58.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,1216.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,us,57.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,us,54.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,us,21937.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,49.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,117.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,52259.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,101.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,731.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1479.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12472.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3166105.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1440,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,11487.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1258.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,908157.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81596,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1160.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,738.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1270.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1049262.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81596,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1607794.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81596,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,564061.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81599,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1930.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1451.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,361.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,us,1999573.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,calls,329279,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,us,1687828.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,calls,164639,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,us,7413.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,__amd_rocclr_copyBuffer,track_slice,,us,749238.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,__amd_rocclr_copyBuffer,track_slice,,calls,164860,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,9873.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_fwd_kernel,track_slice,,us,2871495.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,_fwd_kernel,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,one_shot_all_reduce_gluon,track_slice,,us,6738371.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,one_shot_all_reduce_gluon,track_slice,,calls,164845,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,persistent_all_gather_gluon,track_slice,,us,166512.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,persistent_all_gather_gluon,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,triton_poi_fused_1,track_slice,,us,465395.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,triton_poi_fused_1,track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,triton_poi_fused_2,track_slice,,us,364252.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,triton_poi_fused_2,track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,6564.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,us,560153.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,us,54536.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61115.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4045.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,12351.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,14398.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15746.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,3351.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,1897.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,24.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,2126.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,2146.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,3992.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9911.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,4821.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2482762.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,82316,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,407319.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4549457.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,523886.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,2626.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,100.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,2968.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,## Call CompiledFxGraph fghinj2jzy6xawglpidnrgda222q3mvtyltt6querb24faodjyw4 ##,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,## Call CompiledFxGraph fghinj2jzy6xawglpidnrgda222q3mvtyltt6querb24faodjyw4 ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,## Call CompiledFxGraph fpjgcctvdma3gul5uv66gcoroxdjvf4ur7s7c7iqbt4dcmypnjru ##,track_slice,,us,395.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,## Call CompiledFxGraph fpjgcctvdma3gul5uv66gcoroxdjvf4ur7s7c7iqbt4dcmypnjru ##,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,## Call CompiledFxGraph fujdgeiprrg6oz7zf6rt4rjcy5fsi4xl2fn4ehexdtmdnwhlkujj ##,track_slice,,us,15.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,## Call CompiledFxGraph fujdgeiprrg6oz7zf6rt4rjcy5fsi4xl2fn4ehexdtmdnwhlkujj ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1678.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1006.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,_rocm_C::paged_attention,track_slice,,us,1134.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,_rocm_C::paged_attention,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,_rocm_C::wvSplitK,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::add_rmsnorm,track_slice,,us,653.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::add_rmsnorm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::gemm_a16w16,track_slice,,us,1802.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::get_padded_m,track_slice,,us,28.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::get_padded_m,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::rms_norm,track_slice,,us,19.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::static_per_tensor_quant,track_slice,,us,1062.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::static_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,us,3449.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_local_scalar_dense,track_slice,,us,386.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_local_scalar_dense,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_reshape_alias,track_slice,,us,567.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_reshape_alias,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_scaled_mm,track_slice,,us,102209.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_scaled_mm,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_softmax,track_slice,,us,3111.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_to_copy,track_slice,,us,6742.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_to_copy,track_slice,,calls,6180,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_unsafe_view,track_slice,,us,556.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::_unsafe_view,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::add,track_slice,,us,7876.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::add,track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::add_,track_slice,,us,2452.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::add_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::alias,track_slice,,us,696.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::alias,track_slice,,calls,2629,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::as_strided,track_slice,,us,13157.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::as_strided,track_slice,,calls,61488,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::clone,track_slice,,us,1152.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::clone,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::copy_,track_slice,,us,36680.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::copy_,track_slice,,calls,19576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::detach,track_slice,,us,1468.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::detach,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::detach_,track_slice,,us,130.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::detach_,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::div_,track_slice,,us,4273.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::div_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::empty,track_slice,,us,8643.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::empty,track_slice,,calls,8323,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::empty_like,track_slice,,us,1871.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::empty_like,track_slice,,calls,3839,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::empty_strided,track_slice,,us,12774.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::empty_strided,track_slice,,calls,8990,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::fill_,track_slice,,us,7501.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::fill_,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::flatten,track_slice,,us,1014.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::flatten,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::index,track_slice,,us,17116.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::index,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::index_select,track_slice,,us,1521.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::index_select,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::item,track_slice,,us,1630.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::item,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::lift_fresh,track_slice,,us,284.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::lift_fresh,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::linear,track_slice,,us,1403.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::lt,track_slice,,us,2183.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::lt,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::matmul,track_slice,,us,968.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::mm,track_slice,,us,35361.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::movedim,track_slice,,us,1521.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::movedim,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::permute,track_slice,,us,947.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::permute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::reshape,track_slice,,us,5069.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::reshape,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::resize_,track_slice,,us,1241.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::resize_,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::resolve_conj,track_slice,,us,195.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::resolve_conj,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::resolve_neg,track_slice,,us,133.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::resolve_neg,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::scatter_,track_slice,,us,32.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::scatter_,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::select,track_slice,,us,4505.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::select,track_slice,,calls,4686,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::slice,track_slice,,us,28388.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::slice,track_slice,,calls,49021,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::softmax,track_slice,,us,1431.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::sub,track_slice,,us,4902.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::sub,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::t,track_slice,,us,3006.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::t,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::to,track_slice,,us,4064.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::to,track_slice,,calls,12760,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::transpose,track_slice,,us,2022.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::transpose,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::unbind,track_slice,,us,1141.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::unbind,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::unsqueeze,track_slice,,us,2293.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::unsqueeze,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::view,track_slice,,us,9703.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::view,track_slice,,calls,17953,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::zero_,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,aten::zero_,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,triton_poi_fused_1,track_slice,,us,722.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,triton_poi_fused_1,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,triton_poi_fused_2,track_slice,,us,560.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,triton_poi_fused_2,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,31.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,us,762.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::all_gather,track_slice,,us,1972.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::all_reduce,track_slice,,us,807.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,us,1611.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1606.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,3340.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::unified_attention_with_output,track_slice,,us,686.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,509.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,us,759.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm_aiter::rms_norm,track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cpu_op,vllm_aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipCtxGetCurrent,track_slice,,us,121.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,320.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipDeviceSynchronize,track_slice,,us,30.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipEventDestroy,track_slice,,us,1145.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipEventDestroy,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipEventRecord,track_slice,,us,9110.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipEventRecord,track_slice,,calls,4124,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipEventSynchronize,track_slice,,us,1000.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipEventSynchronize,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,11746.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2627,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipFuncSetAttribute,track_slice,,us,563.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipFuncSetAttribute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3139.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,7886,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipGraphLaunch,track_slice,,us,510204.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipGraphLaunch,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipHostMalloc,track_slice,,us,208.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipLaunchKernel,track_slice,,us,74673.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipLaunchKernel,track_slice,,calls,20897,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipMemcpyAsync,track_slice,,us,50420.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipMemcpyAsync,track_slice,,calls,12373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,14368.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipPointerGetAttribute,track_slice,,us,2870.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,15618,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3169.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12372,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipStreamWaitEvent,track_slice,,us,6335.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/cq/ccqafzu6robqbplafzgpitfmovuogmy7qv2lm32h6uy7s4rwrrsf.py(196): call,track_slice,,us,139.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/cq/ccqafzu6robqbplafzgpitfmovuogmy7qv2lm32h6uy7s4rwrrsf.py(196): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/s6/cs6yowhdra4u36v6ryimnn3p2durig6hcfg7ztgoxkxwgw34ge2g.py(586): call,track_slice,,us,213.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/s6/cs6yowhdra4u36v6ryimnn3p2durig6hcfg7ztgoxkxwgw34ge2g.py(586): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/z2/cz2uappzw4aty3gofq2ph2pi6vxri6heoqbnkb2zfzqd5hdlook7.py(501): call,track_slice,,us,12093.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/z2/cz2uappzw4aty3gofq2ph2pi6vxri6heoqbnkb2zfzqd5hdlook7.py(501): call,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,229.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,501.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,117.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,741.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,840.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1720.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1256.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,108.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,190.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1210.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1408.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1605,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,47.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,230.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3151.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1017.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1332.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1174.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2190,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,4786.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,263.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,39.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,19.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,993.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,303.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,35,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,265.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,4827.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,29139,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1670.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3528.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,44655,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1138.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14784,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,75.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,8231.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,126279,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,84.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,144.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1057,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,11328.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,14675.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,357543,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1624.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,32747.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,6886.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,65872,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,573.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,550240.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,12564849,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,12291.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,31893,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,7772.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,18694,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2121173.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,12560722,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,6916.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2517.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2417.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,853.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,906.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,30.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3247.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1193.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,422.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,516383.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,12564850,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,374.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2944.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,181.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,115.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,5158.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,12308,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1626.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1782.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4921,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,8790.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1444.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,574.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,21.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1521.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1689.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,781.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2678.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,8430.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,143838,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,131.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3112.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,66042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,404.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,719.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,253.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,203.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,8442.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,9280,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,4897.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,4112.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,26705,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,790.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,5732,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,848.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,6977,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,39.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1445.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,611.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4468,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,6895.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,3857,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1743.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1357.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,14676.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,200578,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1554.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2059,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,4964.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,5145,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1666.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1276.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3644.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3249.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,22886.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,367095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,31.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3190.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1970.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,263.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1610,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,18500.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,66501,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,717.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,7509,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,997.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2238,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,239.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2075,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,746.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,546.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1521.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1241.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1191.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1616.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1386.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,9497,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,187.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,5432.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1118.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,56.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1090.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2251.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2860.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,10517.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2068,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,4655.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3930.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,6565.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4118,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,684.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,110.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3388.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,718.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,387.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1588.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2352.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,5155,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1538.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,301.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,110.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,407,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1563.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1333.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3797.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,20745,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1184.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,8165.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,10837.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4522,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,303.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,3804.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1377.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,941.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,868.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,2548.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1852.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,893.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,145.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,445.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,9265.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,12803,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,1048.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,72.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(804): get,track_slice,,us,1948.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(804): get,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(117): __instancecheck__,track_slice,,us,231.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(117): __instancecheck__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(133): _splitext,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(133): _splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(16): exists,track_slice,,us,565.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(16): exists,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(1390): _handle_fromlist,track_slice,,us,396.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(1390): _handle_fromlist,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(645): parent,track_slice,,us,926.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(645): parent,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(709): __getitem__,track_slice,,us,5001.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(709): __getitem__,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(791): encode,track_slice,,us,2135.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(791): encode,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(795): decode,track_slice,,us,717.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(795): decode,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(808): getenv,track_slice,,us,1131.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(808): getenv,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(117): splitext,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(117): splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(169): basename,track_slice,,us,13.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(169): basename,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(41): _get_sep,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(41): _get_sep,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(52): normcase,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(52): normcase,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(0): ,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(0): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(1): ,track_slice,,us,399.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(1): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(1): ,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(1): launcher,track_slice,,us,588.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(1): launcher,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,13.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(2): __eq__,track_slice,,us,1005.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(2): __eq__,track_slice,,calls,3072,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(2): __hash__,track_slice,,us,1656.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(2): __hash__,track_slice,,calls,4101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(2): __init__,track_slice,,us,4215.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(2): __init__,track_slice,,calls,7289,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(2): dynamic_func,track_slice,,us,22802.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(2): dynamic_func,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,21.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(404): execution_fn,track_slice,,us,6609.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(404): execution_fn,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,calls,168,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1326): caller,track_slice,,us,320.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1326): caller,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,us,20.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,us,8781.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1685): ,track_slice,,us,547.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1685): ,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1686): ,track_slice,,us,951.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1686): ,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,us,1527.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,us,1831.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,us,517.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,us,748.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,us,641.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,us,677.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,us,5220.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,us,6427.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,us,158.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,us,236.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,us,780.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,us,5902.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,us,806.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,us,739.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,us,12644.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(104): __init__,track_slice,,us,6069.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(104): __init__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(132): __enter__,track_slice,,us,3097.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(132): __enter__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(141): __exit__,track_slice,,us,2779.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(141): __exit__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(299): helper,track_slice,,us,3697.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(299): helper,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(772): __init__,track_slice,,us,566.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(772): __init__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(775): __enter__,track_slice,,us,612.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(775): __enter__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(778): __exit__,track_slice,,us,417.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,contextlib.py(778): __exit__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,copy.py(247): _reconstruct,track_slice,,us,1706.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,copy.py(247): _reconstruct,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,copy.py(61): copy,track_slice,,us,3494.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,copy.py(61): copy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,copyreg.py(98): __newobj__,track_slice,,us,451.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,us,1736.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,us,9877.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,us,9686.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,us,590.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,us,9089.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,us,775.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,us,3631.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,ctypes/__init__.py(517): cast,track_slice,,us,4109.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,ctypes/__init__.py(517): cast,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(1128): __new__,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(1128): __new__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(1266): __hash__,track_slice,,us,1017.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(1266): __hash__,track_slice,,calls,10276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(1291): value,track_slice,,us,293.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(1291): value,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(202): __get__,track_slice,,us,1506.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(202): __get__,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(720): __call__,track_slice,,us,23.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,enum.py(720): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,functools.py(982): __get__,track_slice,,us,1117.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,functools.py(982): __get__,track_slice,,calls,1093,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(2796): name,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(2796): name,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(2808): kind,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(2808): kind,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(2888): __init__,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(2888): __init__,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(2949): apply_defaults,track_slice,,us,39.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(2949): apply_defaults,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(3089): parameters,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(3089): parameters,track_slice,,calls,28,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(3133): _bind,track_slice,,us,145.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(3133): _bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(3275): bind,track_slice,,us,14.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,inspect.py(3275): bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,us,3839.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,us,6231.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,us,821.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,us,131.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/iris.py(1092): get_rank,track_slice,,us,59.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/iris.py(1092): get_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,us,37.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/iris.py(1173): all_gather,track_slice,,us,1031.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/iris.py(1173): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/iris.py(960): get_device_context,track_slice,,us,71.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/iris.py(960): get_device_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,us,361.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,us,2269.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,us,310.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,json/__init__.py(183): dumps,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,json/__init__.py(183): dumps,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,json/encoder.py(105): __init__,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,json/encoder.py(183): encode,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,json/encoder.py(183): encode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,json/encoder.py(205): iterencode,track_slice,,us,18.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,json/encoder.py(205): iterencode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1011): handle,track_slice,,us,17.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1011): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1137): flush,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1137): flush,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1148): emit,track_slice,,us,33.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1148): emit,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1517): debug,track_slice,,us,535.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2063,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1529): info,track_slice,,us,18.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1529): info,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,26.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,15.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1660): _log,track_slice,,us,25.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1660): _log,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1686): handle,track_slice,,us,14.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1686): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(170): ,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(170): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,802.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,3099,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,23.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(298): __init__,track_slice,,us,119.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(298): __init__,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(383): getMessage,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(447): usesTime,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(455): _format,track_slice,,us,19.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(455): _format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(462): format,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(462): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(668): usesTime,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(690): format,track_slice,,us,21.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(690): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(831): filter,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(831): filter,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(968): acquire,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(968): acquire,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(975): release,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(975): release,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(988): format,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,logging/__init__.py(988): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/process.py(189): name,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/process.py(189): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,633.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,18.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1357.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,nn.Module: Sampler_0,track_slice,,us,1302.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,nn.Module: Sampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,961.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,630.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,77.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,437.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,89.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,549.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,139.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,916.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1723.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,90.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2949.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,queue.py(122): put,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,queue.py(213): _put,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1012): run,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1182): name,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1182): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1485): current_thread,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(1485): current_thread,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(299): __enter__,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(302): __exit__,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(314): _is_owned,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(394): notify,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_compile.py(42): inner,track_slice,,us,27.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_compile.py(42): inner,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,258.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,72.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,58.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,107.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,25.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,477.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,179.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,936.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,84.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,3999.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,23.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,236.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,814.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,119.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1429.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,32.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,1591.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,1259.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,406.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,71.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,5728.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,165.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,305.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,159.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,3579.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,2532.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,651.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,20105,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1079): __call__,track_slice,,us,621.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,985.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,717.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1145): ,track_slice,,us,533.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1145): ,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1257): __call__,track_slice,,us,2700.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,9971,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(864): __call__,track_slice,,us,828.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_ops.py(864): __call__,track_slice,,calls,4810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,463.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_tensor.py(1203): __iter__,track_slice,,us,1268.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_tensor.py(1203): __iter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,1191.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,3098.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,1572.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(823): ,track_slice,,us,886.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(823): ,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,5355.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3248.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2300.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7313.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1432.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2854.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,139.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,25.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1092.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1267.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,2970.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,371.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,971.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2748.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,6316.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,1345.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,11462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,1386.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,2664.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1569.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,2083.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,39.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,95.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,110.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,213.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1262.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1703.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,716.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,443.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,471.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,890.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,7107.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,6136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,833.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,481.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(199): record,track_slice,,us,494.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,270.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,4879.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,297.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1185.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,889.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,47.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,4979.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2784.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,5721,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,19.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,23.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/storage.py(74): size,track_slice,,us,1192.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/storage.py(74): size,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,552.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,43.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,141.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,18784.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,75.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch_guard.py(205): wrapper,track_slice,,us,1074.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch_guard.py(205): wrapper,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch_guard.py(286): wrapper_custom,track_slice,,us,2882.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch_guard.py(286): wrapper_custom,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch_guard.py(309): outer_wrapper,track_slice,,us,1025.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch_guard.py(309): outer_wrapper,track_slice,,calls,3432,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,us,12.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/__init__.py(67): cdiv,track_slice,,us,79.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,249.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,us,8580.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,us,9450.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,us,2717.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,us,190.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,3280.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,247.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,us,276.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/compiler/compiler.py(476): run,track_slice,,us,136.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/compiler/compiler.py(476): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,us,3775.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/knobs.py(130): get,track_slice,,us,1100.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/knobs.py(130): get,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/knobs.py(422): __call__,track_slice,,us,1720.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/knobs.py(422): __call__,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/knobs.py(75): __get__,track_slice,,us,3768.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/knobs.py(75): __get__,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,us,755.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,264.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/driver.py(36): active,track_slice,,us,370.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,us,1625.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,us,543.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(370): ,track_slice,,us,6793.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(370): ,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,us,5005.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(708): run,track_slice,,us,32506.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,triton/runtime/jit.py(708): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1174): __init__,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1215): __setattr__,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1269): __init__,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1273): ,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(166): _type_convert,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(175): _type_check,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(2187): cast,track_slice,,us,1870.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(2187): cast,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(2344): get_origin,track_slice,,us,28.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(2344): get_origin,track_slice,,calls,57,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(2374): get_args,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(2374): get_args,track_slice,,calls,56,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(317): _deduplicate,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(392): inner,track_slice,,us,716.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(392): inner,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(494): __repr__,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(515): __getitem__,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(694): Union,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(730): ,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(747): Optional,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(892): __init__,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(962): __eq__,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(971): __hash__,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,us,827.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1259.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,us,70.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,us,100.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,us,649.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1620.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,451.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,314.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,510.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,110.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,200.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,407.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6336.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1434,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,55.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,35.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,13.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,779.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,740.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,760.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,12.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,992.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2260.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,658.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,182.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,437.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,84.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,540.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,936.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,us,1016.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,us,1073.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,268.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1291.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,569.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,216.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,381.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2839662.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,12560727,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1802.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,542.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2442.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,378.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,851.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,396407.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,12560727,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,313606.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,12560727,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,11076890.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1872702.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,12562788,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1858076.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,12564849,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5231.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9077.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,93.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,251.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,500.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,us,67.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,us,408.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,calls,5147,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,804.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,189.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,313.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,458.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,437.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,us,204.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,us,2379.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,us,449.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,906124.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,12560722,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,103.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,318.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,129.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2239,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,100.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,1923.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,200.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,183.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,3863.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,714.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,us,978.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,us,62.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,877.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,929.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,832.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,439.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,239.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,1004.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,715.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,4509.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,1485.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12395.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1430.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,494.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2467.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,3381.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,24.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2034.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,69.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,41.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,64.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,665.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4512,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,88.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,47.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,113.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,2056,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,299.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,3429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,524.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,55.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,769.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,754.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,135.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,520.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(579): ,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(592): ,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,16.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,15.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1265.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,88.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,1057.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,114.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2678.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,3998.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1081.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1029.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,4755.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2063.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,231.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,13476.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,199.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3304.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7111.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2639.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5639.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,7773.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,124.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,407.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,43.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,533.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,96.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,115.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,81.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,408.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,327.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,354.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,271.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,us,2580.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,us,4171.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,us,273.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,857.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3461.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2513.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,64.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,6144.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,9777.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,135.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,18,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,2981.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9263,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14441.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3557.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4162,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,16.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,50.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3083.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,443.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,761.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1483.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4098,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,23.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,515.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,407.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,169.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,33.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,96.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,215.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,111.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,672.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5223,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,19.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,40,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16095.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,51.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9559.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,22209.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,367.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,20.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,724.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6304.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2569.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,214.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1454.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,321.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,92.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,250805.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,120.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,6008.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11231.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,178066.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,188.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,116794.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,23386.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2069.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6271.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4929.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,233.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,578.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3535.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2513.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,154151.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,404.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,370.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1100.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,177.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3328.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,848.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5341.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,2832.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,66105.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2167.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,426.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,468.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,31521.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,158.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2605.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,681.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7535.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,709.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,60.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,267.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,173.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,94.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,843.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7695674.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,23715176.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(120): update,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(21): __enter__,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(27): __exit__,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(37): __init__,track_slice,,us,22.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,19.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(63): __iter__,track_slice,,us,41.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(95): copy,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(299): __enter__,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(302): __exit__,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(308): _release_save,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(311): _acquire_restore,track_slice,,us,53.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(314): _is_owned,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(323): wait,track_slice,,us,46.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(359): wait,track_slice,,us,9507782.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(601): is_set,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(637): wait,track_slice,,us,19.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(655): wait,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,18.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/_monitor.py(69): run,track_slice,,us,72.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(100): acquire,track_slice,,us,26.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(104): release,track_slice,,us,13.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(108): __enter__,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(759): get_lock,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,31.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,33222629.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,(117): __instancecheck__,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,contextlib.py(104): __init__,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,contextlib.py(132): __enter__,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,contextlib.py(141): __exit__,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,contextlib.py(299): helper,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,queue.py(154): get,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,queue.py(171): get,track_slice,,us,17.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,queue.py(209): _qsize,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,queue.py(217): _get,track_slice,,us,14.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(299): __enter__,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(302): __exit__,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(308): _release_save,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(311): _acquire_restore,track_slice,,us,51.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(314): _is_owned,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(323): wait,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(355): wait,track_slice,,us,351.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(394): notify,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,40.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,15.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,133.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,23690257.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(120): update,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(21): __enter__,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(27): __exit__,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(37): __init__,track_slice,,us,19.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(63): __iter__,track_slice,,us,32.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(95): copy,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(299): __enter__,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(302): __exit__,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(308): _release_save,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(311): _acquire_restore,track_slice,,us,59.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(314): _is_owned,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(323): wait,track_slice,,us,34.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(359): wait,track_slice,,us,9532825.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(601): is_set,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(637): wait,track_slice,,us,16.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(655): wait,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,16.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/_monitor.py(69): run,track_slice,,us,49.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(100): acquire,track_slice,,us,17.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(104): release,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(108): __enter__,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(111): __exit__,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(759): get_lock,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,119848,119858,Trace,PyTorch Profiler (0),track_slice,,us,33223530.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,119848,119858,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,119848,119858,,PyTorch Profiler,track,,us,33223530.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,730,,thread 730 (VLLM::Worker_TP),track,,us,33223437.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1472,,thread 1472 (VLLM::Worker_TP),track,,us,33223473.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1402,,thread 1402 (VLLM::Worker_TP),track,,us,33223432.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,730,1391,,thread 1391 (VLLM::Worker_TP),track,,us,33223428.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,4,,stream 4 ,track,,us,33014381.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +1,3,9,,stream 9 ,track,,us,32642513.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank1.1782867665173726555.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,35414.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,10302,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,9233.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,us,595.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,us,16.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,740.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,804.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,1637.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,556909.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1018,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,us,62.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,1986.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,us,62.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,us,1591.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,us,22590.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,47.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,99.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,51929.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,99.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,726.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1469.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12394.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3144367.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1440,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,11357.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1262.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,910124.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81599,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1153.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,735.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1269.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1040222.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1618156.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81598,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,562519.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81598,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1931.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1450.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,369.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,us,2079810.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,calls,329272,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,us,1736886.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,calls,164638,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,us,7757.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,__amd_rocclr_copyBuffer,track_slice,,us,812658.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,__amd_rocclr_copyBuffer,track_slice,,calls,164860,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10034.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_fwd_kernel,track_slice,,us,2849086.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,_fwd_kernel,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,one_shot_all_reduce_gluon,track_slice,,us,6604241.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,one_shot_all_reduce_gluon,track_slice,,calls,164852,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,persistent_all_gather_gluon,track_slice,,us,165594.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,persistent_all_gather_gluon,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,triton_poi_fused_1,track_slice,,us,485104.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,triton_poi_fused_1,track_slice,,calls,82317,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,triton_poi_fused_2,track_slice,,us,392353.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,triton_poi_fused_2,track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,7287.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,us,585067.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,us,55197.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61162.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4138.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,13242.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,14482.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,15702.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,3726.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,2422.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,26.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,2882.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,2898.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,5726.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,10535.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,5138.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2482654.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,82317,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,413737.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4591563.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,531079.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,2617.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,92.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,3602.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,## Call CompiledFxGraph fvcbnve6layy7ewpq7rsro3ab7c3gisrin5qmjwu2y5xdug3o522 ##,track_slice,,us,17.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,## Call CompiledFxGraph fvcbnve6layy7ewpq7rsro3ab7c3gisrin5qmjwu2y5xdug3o522 ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,## Call CompiledFxGraph fwckaysbdti7lntyqjott4yh4tukeup753arvlsdxbsksc6y27g4 ##,track_slice,,us,413.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,## Call CompiledFxGraph fwckaysbdti7lntyqjott4yh4tukeup753arvlsdxbsksc6y27g4 ##,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,## Call CompiledFxGraph fz4irvryn4wdk2j7cs3gptyjbtcg5tk3doccaz7elsuhqp7aa5u7 ##,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,## Call CompiledFxGraph fz4irvryn4wdk2j7cs3gptyjbtcg5tk3doccaz7elsuhqp7aa5u7 ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1701.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,957.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,_rocm_C::paged_attention,track_slice,,us,1058.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,_rocm_C::paged_attention,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,_rocm_C::wvSplitK,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::add_rmsnorm,track_slice,,us,662.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::add_rmsnorm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::gemm_a16w16,track_slice,,us,1873.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::get_padded_m,track_slice,,us,32.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::get_padded_m,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::rms_norm,track_slice,,us,21.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::static_per_tensor_quant,track_slice,,us,1103.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::static_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,us,3433.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_local_scalar_dense,track_slice,,us,393.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_local_scalar_dense,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_reshape_alias,track_slice,,us,592.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_reshape_alias,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_scaled_mm,track_slice,,us,105074.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_scaled_mm,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_softmax,track_slice,,us,3221.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_to_copy,track_slice,,us,6861.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_to_copy,track_slice,,calls,6180,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_unsafe_view,track_slice,,us,575.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::_unsafe_view,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::add,track_slice,,us,7739.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::add,track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::add_,track_slice,,us,2449.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::add_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::alias,track_slice,,us,686.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::alias,track_slice,,calls,2629,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::as_strided,track_slice,,us,13441.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::as_strided,track_slice,,calls,61488,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::clone,track_slice,,us,1126.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::clone,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::copy_,track_slice,,us,35993.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::copy_,track_slice,,calls,19576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::detach,track_slice,,us,1431.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::detach,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::detach_,track_slice,,us,135.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::detach_,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::div_,track_slice,,us,4284.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::div_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::empty,track_slice,,us,8695.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::empty,track_slice,,calls,8323,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::empty_like,track_slice,,us,1865.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::empty_like,track_slice,,calls,3839,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::empty_strided,track_slice,,us,13090.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::empty_strided,track_slice,,calls,8990,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::fill_,track_slice,,us,7259.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::fill_,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::flatten,track_slice,,us,1009.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::flatten,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::index,track_slice,,us,17370.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::index,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::index_select,track_slice,,us,1708.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::index_select,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::item,track_slice,,us,1716.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::item,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::lift_fresh,track_slice,,us,338.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::lift_fresh,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::linear,track_slice,,us,1361.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::lt,track_slice,,us,2101.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::lt,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::matmul,track_slice,,us,1021.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::mm,track_slice,,us,36428.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::movedim,track_slice,,us,1542.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::movedim,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::permute,track_slice,,us,957.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::permute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::reshape,track_slice,,us,5064.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::reshape,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::resize_,track_slice,,us,1177.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::resize_,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::resolve_conj,track_slice,,us,162.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::resolve_conj,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::resolve_neg,track_slice,,us,130.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::resolve_neg,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::scatter_,track_slice,,us,32.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::scatter_,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::select,track_slice,,us,4526.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::select,track_slice,,calls,4686,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::slice,track_slice,,us,28404.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::slice,track_slice,,calls,49021,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::softmax,track_slice,,us,1562.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::sub,track_slice,,us,4988.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::sub,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::t,track_slice,,us,3170.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::t,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::to,track_slice,,us,3945.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::to,track_slice,,calls,12760,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::transpose,track_slice,,us,2092.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::transpose,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::unbind,track_slice,,us,1174.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::unbind,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::unsqueeze,track_slice,,us,2371.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::unsqueeze,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::view,track_slice,,us,9806.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::view,track_slice,,calls,17953,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::zero_,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,aten::zero_,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,triton_poi_fused_1,track_slice,,us,730.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,triton_poi_fused_1,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,triton_poi_fused_2,track_slice,,us,571.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,triton_poi_fused_2,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,32.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,us,755.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::all_gather,track_slice,,us,2009.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::all_reduce,track_slice,,us,727.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,us,1513.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1636.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,3359.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::unified_attention_with_output,track_slice,,us,707.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,528.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,us,746.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm_aiter::rms_norm,track_slice,,us,16.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cpu_op,vllm_aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipCtxGetCurrent,track_slice,,us,127.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,328.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipDeviceSynchronize,track_slice,,us,29.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipEventDestroy,track_slice,,us,1127.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipEventDestroy,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipEventRecord,track_slice,,us,10125.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipEventRecord,track_slice,,calls,4124,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipEventSynchronize,track_slice,,us,104369.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipEventSynchronize,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,14568.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2627,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipFuncSetAttribute,track_slice,,us,589.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipFuncSetAttribute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,2997.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,7886,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipGraphLaunch,track_slice,,us,521674.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipGraphLaunch,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipHostMalloc,track_slice,,us,222.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipLaunchKernel,track_slice,,us,83594.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipLaunchKernel,track_slice,,calls,20897,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipMemcpyAsync,track_slice,,us,54132.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipMemcpyAsync,track_slice,,calls,12373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,16648.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipPointerGetAttribute,track_slice,,us,3050.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,15618,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3159.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12372,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipStreamWaitEvent,track_slice,,us,6342.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/5h/c5hxxsobeffyrd44zbgzypukul6hgaktbtyz5jtv74cj3v63wp6n.py(196): call,track_slice,,us,154.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/5h/c5hxxsobeffyrd44zbgzypukul6hgaktbtyz5jtv74cj3v63wp6n.py(196): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/gz/cgzrlqiaqpjasr3jmimp4selvxd63mjfdivqedf4rgbwebbzyok6.py(501): call,track_slice,,us,12263.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/gz/cgzrlqiaqpjasr3jmimp4selvxd63mjfdivqedf4rgbwebbzyok6.py(501): call,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/kz/ckz4opb5yldjvrvqn4snydkeipstbm4dtcsuvjlohfmo7qw4pkoh.py(586): call,track_slice,,us,224.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/kz/ckz4opb5yldjvrvqn4snydkeipstbm4dtcsuvjlohfmo7qw4pkoh.py(586): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,239.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,482.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,109.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,788.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,885.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1510.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1290.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,100.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,187.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1197.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1408.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1605,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,56.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,220.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3141.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,996.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1310.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1167.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2190,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,4735.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,256.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,34.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,16.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,959.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,261.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,35,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,268.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,4834.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,29139,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1688.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,4056.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,44655,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1203.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14784,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,78.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,8450.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,126279,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,83.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,151.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1057,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,11400.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,14919.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,357543,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1788.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,32212.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,6880.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,65872,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,595.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,544604.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,12370228,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,12374.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,31893,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,7908.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,18694,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2104992.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,12366101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,6.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,6868.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2580.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2713.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,882.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1021.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,30.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3203.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1194.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,441.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,515626.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,12370229,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,392.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2803.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,185.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,115.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,5084.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,12308,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1523.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1831.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4921,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,8806.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1534.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,636.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,22.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1572.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,782.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1646.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2645.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,19.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,8056.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,143838,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,150.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3036.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,66042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,416.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,762.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,276.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,199.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,8372.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,9280,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,4851.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,5100.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,26705,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,764.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,5732,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,824.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,6977,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,46.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1496.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,610.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4468,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,7010.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,3857,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1773.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1282.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,14688.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,200578,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1581.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2059,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,5087.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,5145,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1652.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1277.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3468.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3324.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,23192.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,367095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,38.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3451.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1960.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,240.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1610,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,18377.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,66501,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,763.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,7509,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,986.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2238,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,249.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2075,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,816.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,535.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1579.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1222.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1210.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1611.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1252.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,9497,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,181.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,5440.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1085.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,52.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1152.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1949.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2816.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,10168.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2068,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,4667.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3880.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,6682.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4118,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,790.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,27.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,111.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3374.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,691.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,8.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,384.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1633.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2255.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,5155,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1576.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,300.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,97.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,407,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1390.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1497.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3799.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,20745,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1306.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,7964.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,10701.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4522,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,325.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,3934.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1374.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,994.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,892.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2431.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,2019.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,954.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,12.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,163.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,470.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,9316.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,12803,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,1037.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,66.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(804): get,track_slice,,us,1970.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(804): get,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(117): __instancecheck__,track_slice,,us,219.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(117): __instancecheck__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(133): _splitext,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(133): _splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(16): exists,track_slice,,us,557.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(16): exists,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(1390): _handle_fromlist,track_slice,,us,390.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(1390): _handle_fromlist,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(645): parent,track_slice,,us,929.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(645): parent,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(709): __getitem__,track_slice,,us,5012.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(709): __getitem__,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(791): encode,track_slice,,us,2138.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(791): encode,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(795): decode,track_slice,,us,726.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(795): decode,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(808): getenv,track_slice,,us,1096.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(808): getenv,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(117): splitext,track_slice,,us,13.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(117): splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(169): basename,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(169): basename,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(41): _get_sep,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(41): _get_sep,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(52): normcase,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(52): normcase,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(0): ,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(0): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(1): ,track_slice,,us,407.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(1): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(1): ,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(1): launcher,track_slice,,us,627.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(1): launcher,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,14.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,12.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(2): __eq__,track_slice,,us,981.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(2): __eq__,track_slice,,calls,3072,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(2): __hash__,track_slice,,us,1673.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(2): __hash__,track_slice,,calls,4101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(2): __init__,track_slice,,us,4197.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(2): __init__,track_slice,,calls,7289,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(2): dynamic_func,track_slice,,us,21745.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(2): dynamic_func,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,13.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,28.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(404): execution_fn,track_slice,,us,6801.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(404): execution_fn,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,18.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,calls,168,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1326): caller,track_slice,,us,331.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1326): caller,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,us,23.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,us,8866.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1685): ,track_slice,,us,552.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1685): ,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1686): ,track_slice,,us,967.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1686): ,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,us,1479.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,us,13.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,us,1922.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,us,532.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,us,788.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,us,709.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,us,873.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,us,5251.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,us,6302.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,us,167.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,us,266.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,us,794.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,us,6005.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,us,819.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,us,733.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,us,13.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,us,12654.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(104): __init__,track_slice,,us,6134.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(104): __init__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(132): __enter__,track_slice,,us,3167.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(132): __enter__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(141): __exit__,track_slice,,us,2812.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(141): __exit__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(299): helper,track_slice,,us,3686.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(299): helper,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(772): __init__,track_slice,,us,532.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(772): __init__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(775): __enter__,track_slice,,us,595.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(775): __enter__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(778): __exit__,track_slice,,us,425.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,contextlib.py(778): __exit__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,copy.py(247): _reconstruct,track_slice,,us,1726.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,copy.py(247): _reconstruct,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,copy.py(61): copy,track_slice,,us,3488.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,copy.py(61): copy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,copyreg.py(98): __newobj__,track_slice,,us,477.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,us,1779.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,us,10334.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,us,9673.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,us,605.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,us,9185.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,us,755.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,us,3627.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,ctypes/__init__.py(517): cast,track_slice,,us,4119.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,ctypes/__init__.py(517): cast,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(1128): __new__,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(1128): __new__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(1266): __hash__,track_slice,,us,1073.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(1266): __hash__,track_slice,,calls,10276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(1291): value,track_slice,,us,310.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(1291): value,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(202): __get__,track_slice,,us,1587.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(202): __get__,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(720): __call__,track_slice,,us,25.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,enum.py(720): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,functools.py(982): __get__,track_slice,,us,1113.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,functools.py(982): __get__,track_slice,,calls,1093,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(2796): name,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(2796): name,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(2808): kind,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(2808): kind,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(2888): __init__,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(2888): __init__,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(2949): apply_defaults,track_slice,,us,30.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(2949): apply_defaults,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(3089): parameters,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(3089): parameters,track_slice,,calls,28,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(3133): _bind,track_slice,,us,145.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(3133): _bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(3275): bind,track_slice,,us,15.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,inspect.py(3275): bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,us,3944.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,us,6373.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,us,852.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,us,132.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/iris.py(1092): get_rank,track_slice,,us,63.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/iris.py(1092): get_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,us,34.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/iris.py(1173): all_gather,track_slice,,us,1103.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/iris.py(1173): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/iris.py(960): get_device_context,track_slice,,us,79.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/iris.py(960): get_device_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,us,379.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,us,2446.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,us,361.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,json/__init__.py(183): dumps,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,json/__init__.py(183): dumps,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,json/encoder.py(105): __init__,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,json/encoder.py(183): encode,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,json/encoder.py(183): encode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,json/encoder.py(205): iterencode,track_slice,,us,23.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,json/encoder.py(205): iterencode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1011): handle,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1011): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1137): flush,track_slice,,us,18.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1137): flush,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1148): emit,track_slice,,us,30.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1148): emit,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1517): debug,track_slice,,us,572.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2063,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1529): info,track_slice,,us,19.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1529): info,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,28.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1660): _log,track_slice,,us,25.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1660): _log,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1686): handle,track_slice,,us,16.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1686): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(170): ,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(170): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,13.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,718.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,3099,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,21.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(298): __init__,track_slice,,us,114.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(298): __init__,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(383): getMessage,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(447): usesTime,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(455): _format,track_slice,,us,16.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(455): _format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(462): format,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(462): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(668): usesTime,track_slice,,us,8.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(690): format,track_slice,,us,23.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(690): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(831): filter,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(831): filter,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(968): acquire,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(968): acquire,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(975): release,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(975): release,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(988): format,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,logging/__init__.py(988): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/process.py(189): name,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/process.py(189): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,635.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,30.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1252.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,nn.Module: Sampler_0,track_slice,,us,1365.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,nn.Module: Sampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1061.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,560.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,83.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,459.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,78.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,534.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,144.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,927.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1669.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,94.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2823.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,queue.py(122): put,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,queue.py(213): _put,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1012): run,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1182): name,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1182): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1485): current_thread,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(1485): current_thread,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(299): __enter__,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(302): __exit__,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(314): _is_owned,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(394): notify,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_compile.py(42): inner,track_slice,,us,35.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_compile.py(42): inner,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,250.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,78.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,65.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,106.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,24.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,464.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,195.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,905.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,89.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4169.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,32.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,269.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,831.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,114.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1508.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,38.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,1640.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,1263.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,404.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,63.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,5621.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,191.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,319.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,169.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,3558.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,3271.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,659.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,20105,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1079): __call__,track_slice,,us,600.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,944.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,703.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1145): ,track_slice,,us,531.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1145): ,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1257): __call__,track_slice,,us,2852.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,9971,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(864): __call__,track_slice,,us,862.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_ops.py(864): __call__,track_slice,,calls,4810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,450.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_tensor.py(1203): __iter__,track_slice,,us,1125.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_tensor.py(1203): __iter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,1217.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,2965.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,1587.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(823): ,track_slice,,us,924.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(823): ,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,5260.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3245.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2291.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7762.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1348.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2782.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,141.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,27.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1139.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1344.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3009.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,375.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,931.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2589.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,6315.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,1354.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,11462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,1352.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,2652.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1525.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,2057.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,38.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,86.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,101.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,205.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1266.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1649.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,729.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,404.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,487.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,879.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,7009.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,6136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,823.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,467.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(199): record,track_slice,,us,517.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,298.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,5064.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,268.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1165.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,928.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,12.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,21.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,8.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,52.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5017.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2751.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,5721,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,19.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,24.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/storage.py(74): size,track_slice,,us,1204.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/storage.py(74): size,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,603.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,49.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,147.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,19522.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,78.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch_guard.py(205): wrapper,track_slice,,us,1079.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch_guard.py(205): wrapper,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch_guard.py(286): wrapper_custom,track_slice,,us,2997.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch_guard.py(286): wrapper_custom,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch_guard.py(309): outer_wrapper,track_slice,,us,1045.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch_guard.py(309): outer_wrapper,track_slice,,calls,3432,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,us,15.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/__init__.py(67): cdiv,track_slice,,us,72.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,244.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,us,8601.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,us,10070.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,us,2821.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,us,205.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,3337.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,246.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,us,280.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/compiler/compiler.py(476): run,track_slice,,us,140.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/compiler/compiler.py(476): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,us,3742.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/knobs.py(130): get,track_slice,,us,1075.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/knobs.py(130): get,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/knobs.py(422): __call__,track_slice,,us,1697.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/knobs.py(422): __call__,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/knobs.py(75): __get__,track_slice,,us,3726.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/knobs.py(75): __get__,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,us,777.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,255.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/driver.py(36): active,track_slice,,us,387.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,us,1597.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,us,568.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(370): ,track_slice,,us,7143.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(370): ,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,us,5205.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(708): run,track_slice,,us,33039.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,triton/runtime/jit.py(708): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1174): __init__,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1215): __setattr__,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1269): __init__,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1273): ,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(166): _type_convert,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(175): _type_check,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(2187): cast,track_slice,,us,1780.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(2187): cast,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(2344): get_origin,track_slice,,us,30.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(2344): get_origin,track_slice,,calls,57,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(2374): get_args,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(2374): get_args,track_slice,,calls,56,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(317): _deduplicate,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(392): inner,track_slice,,us,686.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(392): inner,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(494): __repr__,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(515): __getitem__,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(694): Union,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(730): ,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(747): Optional,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(892): __init__,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(962): __eq__,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(971): __hash__,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,us,896.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1279.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,us,72.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,us,99.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,us,729.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1639.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,461.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,327.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,533.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,135.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,215.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,411.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6636.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1434,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,68.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,36.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,1040.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,972.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,800.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,13.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,1030.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2550.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,651.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,136.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,665.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,86.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,571.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,927.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,us,1030.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,us,1128.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,302.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1374.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,582.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,232.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,496.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,2782523.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,12366106,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1800.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,545.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2464.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,381.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,894.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,412037.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,12366106,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,329275.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,12366106,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,10943662.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,1875273.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,12368167,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,1875580.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,12370228,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5343.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9313.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,94.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,237.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,506.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,us,76.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,us,408.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,calls,5147,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,824.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,175.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,316.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,456.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,455.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,us,225.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,us,2435.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,us,478.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,926757.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,12366101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,101.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,316.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,123.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2239,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,103.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2109.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,221.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,192.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,3966.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,707.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,us,966.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,us,55.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,872.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1155.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,945.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,464.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,244.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,859.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,525.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,4661.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,1398.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12794.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1380.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,481.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2388.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,5126.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,32.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2130.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,63.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,33.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,57.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,635.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4512,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,93.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,43.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,107.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,2056,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,297.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,3429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,483.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,58.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,60.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,624.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,785.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,147.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,537.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(579): ,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,17.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1222.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,81.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,1267.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,128.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2799.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4189.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1158.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1050.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,4695.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2107.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,223.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,13600.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,214.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3192.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7118.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2542.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5674.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,7955.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,123.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,428.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,46.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,532.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,99.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,114.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,89.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,23.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,437.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,323.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,370.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,263.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,us,2666.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,us,4177.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,us,287.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,1027.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3486.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2463.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,59.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,6280.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,9681.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,131.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,18,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3118.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9263,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14298.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3517.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4162,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,54.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,26.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3052.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,452.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,724.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1769.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4098,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,24.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,544.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,387.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,170.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,39.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,88.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,207.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,139.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,749.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5223,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,6.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,23.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,40,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16430.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,56.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9588.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,22188.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,365.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,784.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6084.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2592.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,249.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1449.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,324.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,88.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,251743.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,122.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,5974.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11199.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,177514.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,168.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,117137.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,23577.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2023.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6755.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4900.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,235.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,489.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3550.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2334.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,153696.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,415.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,369.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1252.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,183.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3335.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,871.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5827.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,2882.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,66518.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2207.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,477.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,456.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,31521.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,160.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2612.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,600.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7638.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,713.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,54.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,293.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,178.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,89.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,830.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7683166.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,23323018.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,12.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(120): update,track_slice,,us,22.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(21): __enter__,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(27): __exit__,track_slice,,us,21.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(37): __init__,track_slice,,us,31.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,25.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(63): __iter__,track_slice,,us,52.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(95): copy,track_slice,,us,16.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(299): __enter__,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(302): __exit__,track_slice,,us,8.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(308): _release_save,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(311): _acquire_restore,track_slice,,us,72.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(314): _is_owned,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(323): wait,track_slice,,us,69.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(359): wait,track_slice,,us,9899663.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(601): is_set,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(637): wait,track_slice,,us,26.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(655): wait,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,25.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/_monitor.py(69): run,track_slice,,us,101.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(100): acquire,track_slice,,us,36.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(104): release,track_slice,,us,21.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(108): __enter__,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(111): __exit__,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(759): get_lock,track_slice,,us,6.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,44.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,20.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,33222379.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,(117): __instancecheck__,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,contextlib.py(104): __init__,track_slice,,us,12.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,contextlib.py(132): __enter__,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,contextlib.py(141): __exit__,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,contextlib.py(299): helper,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,queue.py(154): get,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,queue.py(171): get,track_slice,,us,25.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,queue.py(209): _qsize,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,queue.py(217): _get,track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(1012): run,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(299): __enter__,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(302): __exit__,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(308): _release_save,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(311): _acquire_restore,track_slice,,us,59.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(314): _is_owned,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(323): wait,track_slice,,us,13.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(355): wait,track_slice,,us,405.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(394): notify,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,17.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,12.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,63.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,23.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,12.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,83.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,6.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,23290814.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(120): update,track_slice,,us,15.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(17): __init__,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(21): __enter__,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(27): __exit__,track_slice,,us,15.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(37): __init__,track_slice,,us,24.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(63): __iter__,track_slice,,us,39.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(95): copy,track_slice,,us,15.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(299): __enter__,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(302): __exit__,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(308): _release_save,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(311): _acquire_restore,track_slice,,us,59.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(314): _is_owned,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(323): wait,track_slice,,us,46.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(359): wait,track_slice,,us,9932079.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(601): is_set,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(637): wait,track_slice,,us,22.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(655): wait,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,20.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/_monitor.py(69): run,track_slice,,us,69.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(100): acquire,track_slice,,us,24.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(104): release,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(108): __enter__,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(111): __exit__,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(759): get_lock,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,119848,119858,Trace,PyTorch Profiler (0),track_slice,,us,33223444.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,119848,119858,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,119848,119858,,PyTorch Profiler,track,,us,33223444.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,760,,thread 760 (VLLM::Worker_TP),track,,us,33223343.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1476,,thread 1476 (VLLM::Worker_TP),track,,us,33223382.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1448,,thread 1448 (VLLM::Worker_TP),track,,us,33223337.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,760,1395,,thread 1395 (VLLM::Worker_TP),track,,us,33223333.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,4,,stream 4 ,track,,us,33014395.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +4,6,9,,stream 9 ,track,,us,32642477.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank4.1782867661035199344.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,53500.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,10302,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,8739.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,us,32.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,us,16.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,35.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,65.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,62.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,25735.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1018,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,us,56.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,1246.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,us,679.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,us,6982.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,us,23711.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,48.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,100.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,52048.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,98.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,793.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1591.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12510.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3224183.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1440,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,11522.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1206.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,970783.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81595,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1162.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,795.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1259.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1109289.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81592,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1613811.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81592,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,617786.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81596,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2045.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1485.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,461.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,us,2486504.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,calls,329273,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,us,1908420.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,calls,164634,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,us,8664.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,__amd_rocclr_copyBuffer,track_slice,,us,1012391.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,__amd_rocclr_copyBuffer,track_slice,,calls,164854,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10532.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_fwd_kernel,track_slice,,us,2872330.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,_fwd_kernel,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,one_shot_all_reduce_gluon,track_slice,,us,6767959.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,one_shot_all_reduce_gluon,track_slice,,calls,164830,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,persistent_all_gather_gluon,track_slice,,us,167222.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,persistent_all_gather_gluon,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,triton_poi_fused_1,track_slice,,us,581829.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,triton_poi_fused_1,track_slice,,calls,82317,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,triton_poi_fused_2,track_slice,,us,484693.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,triton_poi_fused_2,track_slice,,calls,82319,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8764.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,us,682498.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,82320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,us,54821.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,61829.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,16.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4468.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,17207.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,14976.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,16311.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5187.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,3812.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,16.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,28.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,32.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,16.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5425.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5481.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,11126.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9930.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,6290.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2527407.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,82305,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,510855.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,82318,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4488151.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,804,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,561540.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,82318,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,2642.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,93.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,5234.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,## Call CompiledFxGraph fad67rbfyux42a7b7odb53buft57b4wso4ubshp3m4sscjqql5et ##,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,## Call CompiledFxGraph fad67rbfyux42a7b7odb53buft57b4wso4ubshp3m4sscjqql5et ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,## Call CompiledFxGraph fydur6rtnodgbbonzcaqpt7l65vefv6opkyyebdtue45vugj6j6i ##,track_slice,,us,18.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,## Call CompiledFxGraph fydur6rtnodgbbonzcaqpt7l65vefv6opkyyebdtue45vugj6j6i ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,## Call CompiledFxGraph fzweodii2y7a5adqv2um2olfaphkkbfkoeuhinrrv7jzgwa4jnt4 ##,track_slice,,us,446.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,## Call CompiledFxGraph fzweodii2y7a5adqv2um2olfaphkkbfkoeuhinrrv7jzgwa4jnt4 ##,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1815.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1048.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,_rocm_C::paged_attention,track_slice,,us,1161.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,_rocm_C::paged_attention,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,_rocm_C::wvSplitK,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::add_rmsnorm,track_slice,,us,652.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::add_rmsnorm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::gemm_a16w16,track_slice,,us,1901.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::get_padded_m,track_slice,,us,33.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::get_padded_m,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::rms_norm,track_slice,,us,25.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::static_per_tensor_quant,track_slice,,us,1101.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::static_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,us,3149.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_local_scalar_dense,track_slice,,us,373.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_local_scalar_dense,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_reshape_alias,track_slice,,us,583.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_reshape_alias,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_scaled_mm,track_slice,,us,108567.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_scaled_mm,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_softmax,track_slice,,us,3114.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_to_copy,track_slice,,us,6853.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_to_copy,track_slice,,calls,6180,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_unsafe_view,track_slice,,us,580.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::_unsafe_view,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::add,track_slice,,us,9071.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::add,track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::add_,track_slice,,us,2533.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::add_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::alias,track_slice,,us,760.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::alias,track_slice,,calls,2629,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::as_strided,track_slice,,us,13858.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::as_strided,track_slice,,calls,61488,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::clone,track_slice,,us,1164.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::clone,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::copy_,track_slice,,us,43115.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::copy_,track_slice,,calls,19576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::detach,track_slice,,us,1508.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::detach,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::detach_,track_slice,,us,121.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::detach_,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::div_,track_slice,,us,4019.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::div_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::empty,track_slice,,us,9359.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::empty,track_slice,,calls,8323,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::empty_like,track_slice,,us,1846.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::empty_like,track_slice,,calls,3839,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::empty_strided,track_slice,,us,13319.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::empty_strided,track_slice,,calls,8990,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::fill_,track_slice,,us,8103.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::fill_,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::flatten,track_slice,,us,1018.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::flatten,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::index,track_slice,,us,18808.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::index,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::index_select,track_slice,,us,1674.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::index_select,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::item,track_slice,,us,1446.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::item,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::lift_fresh,track_slice,,us,353.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::lift_fresh,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::linear,track_slice,,us,1470.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::lt,track_slice,,us,2343.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::lt,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::matmul,track_slice,,us,1008.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::mm,track_slice,,us,37080.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::movedim,track_slice,,us,1554.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::movedim,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::permute,track_slice,,us,975.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::permute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::reshape,track_slice,,us,5192.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::reshape,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::resize_,track_slice,,us,1366.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::resize_,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::resolve_conj,track_slice,,us,208.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::resolve_conj,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::resolve_neg,track_slice,,us,126.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::resolve_neg,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::scatter_,track_slice,,us,30.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::scatter_,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::select,track_slice,,us,4738.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::select,track_slice,,calls,4686,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::slice,track_slice,,us,29891.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::slice,track_slice,,calls,49021,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::softmax,track_slice,,us,1414.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::sub,track_slice,,us,5466.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::sub,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::t,track_slice,,us,3162.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::t,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::to,track_slice,,us,4002.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::to,track_slice,,calls,12760,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::transpose,track_slice,,us,2226.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::transpose,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::unbind,track_slice,,us,1106.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::unbind,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::unsqueeze,track_slice,,us,2182.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::unsqueeze,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::view,track_slice,,us,10033.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::view,track_slice,,calls,17953,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::zero_,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,aten::zero_,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,triton_poi_fused_1,track_slice,,us,719.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,triton_poi_fused_1,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,triton_poi_fused_2,track_slice,,us,537.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,triton_poi_fused_2,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,40.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,us,749.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::all_gather,track_slice,,us,2092.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::all_reduce,track_slice,,us,818.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,us,1647.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1646.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,3533.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::unified_attention_with_output,track_slice,,us,763.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,557.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,us,791.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm_aiter::rms_norm,track_slice,,us,20.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cpu_op,vllm_aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipCtxGetCurrent,track_slice,,us,129.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,329.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipDeviceSynchronize,track_slice,,us,33.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipEventDestroy,track_slice,,us,1218.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipEventDestroy,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipEventRecord,track_slice,,us,11368.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipEventRecord,track_slice,,calls,4124,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipEventSynchronize,track_slice,,us,17032979.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipEventSynchronize,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,14397.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2627,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipFuncSetAttribute,track_slice,,us,486.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipFuncSetAttribute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3167.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,7886,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipGraphLaunch,track_slice,,us,816037.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipGraphLaunch,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipHostMalloc,track_slice,,us,300.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipLaunchKernel,track_slice,,us,91418.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipLaunchKernel,track_slice,,calls,20897,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipMemcpyAsync,track_slice,,us,61290.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipMemcpyAsync,track_slice,,calls,12373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,17889.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipPointerGetAttribute,track_slice,,us,2997.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,15618,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3334.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12372,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipStreamWaitEvent,track_slice,,us,6247.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/5k/c5kmekfxeyj6bw7amqb75apf4dwxvi3de45dcsryztzexyagg7nb.py(196): call,track_slice,,us,150.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/5k/c5kmekfxeyj6bw7amqb75apf4dwxvi3de45dcsryztzexyagg7nb.py(196): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/tw/ctwnof5y4qsuiyjeji6aewkwfynvjv4vykrcwmsrkcjsiupfrjb7.py(586): call,track_slice,,us,230.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/tw/ctwnof5y4qsuiyjeji6aewkwfynvjv4vykrcwmsrkcjsiupfrjb7.py(586): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/uf/cuf2f37zfbkdvuvqljge3glxintnrnsyjqtnycggpsrji3zeowlh.py(501): call,track_slice,,us,12173.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/uf/cuf2f37zfbkdvuvqljge3glxintnrnsyjqtnycggpsrji3zeowlh.py(501): call,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,220.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,558.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,106.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,850.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,886.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1608.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1323.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,110.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,184.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1218.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1470.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1605,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,56.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,232.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3190.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1093.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1274.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1152.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2190,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,4935.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,290.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,29.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,17.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,982.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,208.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,35,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,265.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,5066.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,29139,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1653.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3703.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,44655,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1175.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14784,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,81.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,8456.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,126279,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,92.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,137.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1057,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,12963.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,15603.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,357543,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1756.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,31170.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,7353.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,65872,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,603.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,131961.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2797800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,13117.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,31893,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,7773.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,18694,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,473972.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2793673,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,6706.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2688.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,905.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2612.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,31.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1005.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3317.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1186.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,469.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,116451.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2797801,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,383.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2985.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,190.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,121.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,5190.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,12308,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1506.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,8.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1910.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4921,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,8677.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1600.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,618.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,23.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1660.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1714.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,810.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2769.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,8852.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,143838,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,137.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3193.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,66042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,378.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,703.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,250.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,206.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,9245.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,9280,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,4814.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,5037.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,26705,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,787.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,5732,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,849.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,6977,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,37.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1417.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,619.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4468,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,6976.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,3857,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1688.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1337.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,15472.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,200578,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1579.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2059,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,5481.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,5145,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1736.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1240.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3616.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3486.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,24573.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,367095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,34.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3075.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2041.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,234.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1610,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,18859.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,66501,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,768.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,7509,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1019.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2238,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,359.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2075,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,791.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,526.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1558.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1204.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1230.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1560.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1316.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,9497,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,193.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,5433.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1130.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,63.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1171.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1848.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2886.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,10745.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2068,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,4629.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,4390.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,6602.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4118,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,810.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,27.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,143.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3607.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,698.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,389.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1361.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2165.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,5155,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1469.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,304.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,110.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,407,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1492.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1418.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3883.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,20745,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2902.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,7895.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,10241.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4522,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,305.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,3447.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1389.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,980.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,960.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2465.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,2013.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,858.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,148.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,485.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,9300.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,12803,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,1316.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,74.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(804): get,track_slice,,us,2028.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(804): get,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(117): __instancecheck__,track_slice,,us,216.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(117): __instancecheck__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(133): _splitext,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(133): _splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(16): exists,track_slice,,us,546.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(16): exists,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(1390): _handle_fromlist,track_slice,,us,401.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(1390): _handle_fromlist,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(645): parent,track_slice,,us,949.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(645): parent,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(709): __getitem__,track_slice,,us,5206.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(709): __getitem__,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(791): encode,track_slice,,us,2252.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(791): encode,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(795): decode,track_slice,,us,759.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(795): decode,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(808): getenv,track_slice,,us,1333.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(808): getenv,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(117): splitext,track_slice,,us,16.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(117): splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(169): basename,track_slice,,us,12.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(169): basename,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(41): _get_sep,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(41): _get_sep,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(52): normcase,track_slice,,us,6.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(52): normcase,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(0): ,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(0): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(1): ,track_slice,,us,397.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(1): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(1): ,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(1): launcher,track_slice,,us,644.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(1): launcher,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,12.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(2): __eq__,track_slice,,us,1009.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(2): __eq__,track_slice,,calls,3072,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(2): __hash__,track_slice,,us,1631.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(2): __hash__,track_slice,,calls,4101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(2): __init__,track_slice,,us,4086.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(2): __init__,track_slice,,calls,7289,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(2): dynamic_func,track_slice,,us,22946.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(2): dynamic_func,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,10.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,12.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,10.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,27.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(404): execution_fn,track_slice,,us,6856.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(404): execution_fn,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,11.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,17.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,calls,168,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1326): caller,track_slice,,us,336.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1326): caller,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,us,24.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,us,8893.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1685): ,track_slice,,us,572.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1685): ,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1686): ,track_slice,,us,969.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1686): ,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,us,1565.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,us,13.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,us,1881.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,us,565.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,us,716.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,us,661.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,us,632.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,us,5312.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,us,6206.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,us,178.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,us,236.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,us,803.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,us,6027.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,us,796.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,us,719.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,us,12865.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(104): __init__,track_slice,,us,5662.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(104): __init__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(132): __enter__,track_slice,,us,3024.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(132): __enter__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(141): __exit__,track_slice,,us,2672.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(141): __exit__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(299): helper,track_slice,,us,3490.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(299): helper,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(772): __init__,track_slice,,us,510.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(772): __init__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(775): __enter__,track_slice,,us,551.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(775): __enter__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(778): __exit__,track_slice,,us,400.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,contextlib.py(778): __exit__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,copy.py(247): _reconstruct,track_slice,,us,1668.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,copy.py(247): _reconstruct,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,copy.py(61): copy,track_slice,,us,3442.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,copy.py(61): copy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,copyreg.py(98): __newobj__,track_slice,,us,457.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,us,1653.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,us,9571.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,us,9458.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,us,581.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,us,8905.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,us,717.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,us,3524.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,ctypes/__init__.py(517): cast,track_slice,,us,4021.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,ctypes/__init__.py(517): cast,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(1128): __new__,track_slice,,us,8.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(1128): __new__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(1266): __hash__,track_slice,,us,1017.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(1266): __hash__,track_slice,,calls,10276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(1291): value,track_slice,,us,303.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(1291): value,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(202): __get__,track_slice,,us,1555.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(202): __get__,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(720): __call__,track_slice,,us,29.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,enum.py(720): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,functools.py(982): __get__,track_slice,,us,1130.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,functools.py(982): __get__,track_slice,,calls,1093,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(2796): name,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(2796): name,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(2808): kind,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(2808): kind,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(2888): __init__,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(2888): __init__,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(2949): apply_defaults,track_slice,,us,33.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(2949): apply_defaults,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(3089): parameters,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(3089): parameters,track_slice,,calls,28,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(3133): _bind,track_slice,,us,157.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(3133): _bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(3275): bind,track_slice,,us,18.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,inspect.py(3275): bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,us,3981.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,us,6355.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,us,831.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,us,128.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/iris.py(1092): get_rank,track_slice,,us,59.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/iris.py(1092): get_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,us,45.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/iris.py(1173): all_gather,track_slice,,us,1076.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/iris.py(1173): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/iris.py(960): get_device_context,track_slice,,us,53.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/iris.py(960): get_device_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,us,369.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,us,2423.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,us,305.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,json/__init__.py(183): dumps,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,json/__init__.py(183): dumps,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,json/encoder.py(105): __init__,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,json/encoder.py(183): encode,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,json/encoder.py(183): encode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,json/encoder.py(205): iterencode,track_slice,,us,22.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,json/encoder.py(205): iterencode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1011): handle,track_slice,,us,21.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1011): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1137): flush,track_slice,,us,17.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1137): flush,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1148): emit,track_slice,,us,42.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1148): emit,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1517): debug,track_slice,,us,541.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2063,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1529): info,track_slice,,us,19.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1529): info,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,32.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,18.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1660): _log,track_slice,,us,33.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1660): _log,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1686): handle,track_slice,,us,18.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1686): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(170): ,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(170): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,15.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,586.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,3099,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(298): __init__,track_slice,,us,131.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(298): __init__,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(383): getMessage,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(447): usesTime,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(455): _format,track_slice,,us,16.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(455): _format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(462): format,track_slice,,us,6.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(462): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(668): usesTime,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,5.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(690): format,track_slice,,us,27.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(690): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(831): filter,track_slice,,us,5.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(831): filter,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(968): acquire,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(968): acquire,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(975): release,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(975): release,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(988): format,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,logging/__init__.py(988): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/process.py(189): name,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/process.py(189): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,579.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,31.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1328.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,nn.Module: Sampler_0,track_slice,,us,1392.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,nn.Module: Sampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,955.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,558.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,73.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,396.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,71.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,539.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,154.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,926.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1897.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,92.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2902.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,queue.py(122): put,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,queue.py(213): _put,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1182): name,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1182): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1485): current_thread,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(1485): current_thread,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(299): __enter__,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(302): __exit__,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(314): _is_owned,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(394): notify,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_compile.py(42): inner,track_slice,,us,78.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_compile.py(42): inner,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,223.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,85.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,64.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,107.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,31.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,482.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,195.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,930.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,91.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4267.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,26.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,249.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,894.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,115.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1488.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,32.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,1596.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,1372.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,419.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,66.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,5945.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,187.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,325.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,183.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,4110.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,3074.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,646.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,20105,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1079): __call__,track_slice,,us,612.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,942.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,744.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1145): ,track_slice,,us,567.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1145): ,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1257): __call__,track_slice,,us,2769.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,9971,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(864): __call__,track_slice,,us,833.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_ops.py(864): __call__,track_slice,,calls,4810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,490.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_tensor.py(1203): __iter__,track_slice,,us,1031.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_tensor.py(1203): __iter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,1167.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,3120.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,1565.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(823): ,track_slice,,us,854.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(823): ,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,5138.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3255.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2295.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,7659.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1402.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2678.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,152.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,26.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1171.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1248.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3089.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,391.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,930.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2645.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,6334.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,1322.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,11462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,1476.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,2620.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1557.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1988.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,37.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,90.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,105.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,6.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,235.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1328.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1499.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,745.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,426.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,472.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,902.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,6974.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,6136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,863.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,466.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(199): record,track_slice,,us,484.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,269.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,5660.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,270.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1267.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,1067.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,14.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,5.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,13.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,23.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,56.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5259.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2884.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,5721,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,23.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,30.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/storage.py(74): size,track_slice,,us,1178.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/storage.py(74): size,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,675.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,45.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,148.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,19194.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,96.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch_guard.py(205): wrapper,track_slice,,us,1049.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch_guard.py(205): wrapper,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch_guard.py(286): wrapper_custom,track_slice,,us,2926.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch_guard.py(286): wrapper_custom,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch_guard.py(309): outer_wrapper,track_slice,,us,1058.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch_guard.py(309): outer_wrapper,track_slice,,calls,3432,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,us,14.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/__init__.py(67): cdiv,track_slice,,us,75.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,254.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,us,8589.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,us,9315.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,us,2650.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,us,212.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,3431.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,269.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,us,267.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/compiler/compiler.py(476): run,track_slice,,us,140.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/compiler/compiler.py(476): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,us,3982.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/knobs.py(130): get,track_slice,,us,1189.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/knobs.py(130): get,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/knobs.py(422): __call__,track_slice,,us,1743.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/knobs.py(422): __call__,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/knobs.py(75): __get__,track_slice,,us,3852.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/knobs.py(75): __get__,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,us,801.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,286.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/driver.py(36): active,track_slice,,us,358.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,us,1612.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,us,566.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(370): ,track_slice,,us,7117.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(370): ,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,us,5040.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(708): run,track_slice,,us,32207.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,triton/runtime/jit.py(708): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1174): __init__,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1215): __setattr__,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1269): __init__,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1273): ,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(166): _type_convert,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(175): _type_check,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(2187): cast,track_slice,,us,1963.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(2187): cast,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(2344): get_origin,track_slice,,us,29.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(2344): get_origin,track_slice,,calls,57,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(2374): get_args,track_slice,,us,21.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(2374): get_args,track_slice,,calls,56,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(317): _deduplicate,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(392): inner,track_slice,,us,701.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(392): inner,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(494): __repr__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(515): __getitem__,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(694): Union,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(730): ,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(747): Optional,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(892): __init__,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(962): __eq__,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(971): __hash__,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,us,927.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1286.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,us,70.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,us,103.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,us,678.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1545.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,449.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,312.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,579.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,117.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,218.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,448.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6250.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1434,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,75.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,41.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,15.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,1006.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,956.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,820.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,15.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,8.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,992.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2340.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,672.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,141.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,627.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,95.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,552.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,953.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,us,1044.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,us,1090.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,263.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1403.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,589.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,245.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,398.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,622574.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,2793678,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1513.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,550.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2622.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,412.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,920.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,114009.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,2793678,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,81379.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,2793678,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,2359694.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,447199.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,2795739,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,425548.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,2797800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5239.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,9048.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,101.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,259.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,538.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,us,72.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,us,408.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,calls,5147,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,890.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,177.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,329.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,459.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,470.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,us,218.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,us,2561.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,us,424.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,205741.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,2793673,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,101.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,303.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,121.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2239,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,102.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,1902.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,220.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,182.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,3960.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,683.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,us,912.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,us,78.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,923.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,1156.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,956.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,461.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,249.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,854.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,591.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,4649.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,1458.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12356.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1379.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,472.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2278.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,5018.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,37.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2057.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,91.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,30.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,59.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,639.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4512,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,88.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,41.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,105.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,2056,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,297.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,3429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,512.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,61.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,635.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,773.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,125.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,455.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(579): ,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(584): ,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(592): ,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,17.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1156.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,97.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,807.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,120.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2752.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4204.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1185.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1079.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,4769.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2178.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,234.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,13659.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,210.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,3094.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7072.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2904.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5503.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,8018.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,112.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,434.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,37.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,630.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,88.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,115.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,112.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,22.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,441.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,337.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,359.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,258.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,us,2508.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,us,3878.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,us,263.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,836.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3208.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2339.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,61.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,5970.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,11002.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,160.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,18,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,3028.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9263,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14350.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3610.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4162,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,25.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,57.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,25.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3293.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,486.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,782.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1460.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4098,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,25.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,14.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,507.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,373.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,165.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,36.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,198.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,194.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,127.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,659.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5223,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,5.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,18.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,40,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16542.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,55.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9659.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,22016.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,355.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,22.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,8.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,770.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6491.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2457.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,260.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1399.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,296.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,87.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,266565.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,111.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,5859.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,10648.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,171377.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,174.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,114991.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,23556.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2028.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6766.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4937.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,208.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,501.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3534.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2133.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,150128.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,422.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,375.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1205.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,181.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3344.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,808.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5827.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,2949.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,65910.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2194.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,409.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,461.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,30268.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,155.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2533.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,617.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7560.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,696.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,46.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,290.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,163.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,96.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,786.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7672485.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,23718188.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(120): update,track_slice,,us,17.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(21): __enter__,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(27): __exit__,track_slice,,us,20.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(37): __init__,track_slice,,us,26.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,19.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(63): __iter__,track_slice,,us,43.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(95): copy,track_slice,,us,14.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(299): __enter__,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(302): __exit__,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(308): _release_save,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(311): _acquire_restore,track_slice,,us,65.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(314): _is_owned,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(323): wait,track_slice,,us,46.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(359): wait,track_slice,,us,9429005.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(601): is_set,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(637): wait,track_slice,,us,21.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(655): wait,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,19.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/_monitor.py(69): run,track_slice,,us,77.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(100): acquire,track_slice,,us,37.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(104): release,track_slice,,us,13.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(108): __enter__,track_slice,,us,7.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(111): __exit__,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(759): get_lock,track_slice,,us,6.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,47.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,20.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,33146736.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,(117): __instancecheck__,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,contextlib.py(104): __init__,track_slice,,us,13.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,contextlib.py(132): __enter__,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,contextlib.py(141): __exit__,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,contextlib.py(299): helper,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,queue.py(154): get,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,queue.py(171): get,track_slice,,us,27.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,queue.py(209): _qsize,track_slice,,us,14.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,queue.py(217): _get,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(1012): run,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(299): __enter__,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(302): __exit__,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(308): _release_save,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(311): _acquire_restore,track_slice,,us,55.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(314): _is_owned,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(323): wait,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(355): wait,track_slice,,us,433.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(394): notify,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,11.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,17.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,13.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,63.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,86.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,23691811.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(120): update,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(17): __init__,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(21): __enter__,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(27): __exit__,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(37): __init__,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(63): __iter__,track_slice,,us,21.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(95): copy,track_slice,,us,6.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(299): __enter__,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(302): __exit__,track_slice,,us,3.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(308): _release_save,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(311): _acquire_restore,track_slice,,us,30.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(314): _is_owned,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(323): wait,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(359): wait,track_slice,,us,9455719.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(601): is_set,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(637): wait,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(655): wait,track_slice,,us,4.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/_monitor.py(69): run,track_slice,,us,33.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(100): acquire,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(104): release,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(108): __enter__,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(111): __exit__,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(759): get_lock,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,119848,119858,Trace,PyTorch Profiler (0),track_slice,,us,33147830.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,119848,119858,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,119848,119858,,PyTorch Profiler,track,,us,33147830.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,745,,thread 745 (VLLM::Worker_TP),track,,us,33147729.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1471,,thread 1471 (VLLM::Worker_TP),track,,us,33147770.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1418,,thread 1418 (VLLM::Worker_TP),track,,us,33147723.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,745,1390,,thread 1390 (VLLM::Worker_TP),track,,us,33147719.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,4,,stream 4 ,track,,us,33052941.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +3,5,9,,stream 9 ,track,,us,32680851.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank3.1782867468616174927.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,57220.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,10302,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,us,9297.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_memcpy,Memcpy HtoD (Host -> Device),track_slice,,calls,1042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,us,31.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_15(15),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,us,18.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,us,38.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_31(31),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,us,37.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_47(47),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,us,59.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_62(62),track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,us,26871.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_0(0)_generation_64(64),track_slice,,calls,1018,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,us,57.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_15(114740)_generation_49(49),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,us,637.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_16(131070)_generation_2(2),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,us,665.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_17(131039)_generation_33(33),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,us,1585.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_17(131055)_generation_17(17),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,us,21779.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,gpu_user_annotation,execute_context_2(16384)_generation_0(0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,50.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,105.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x48x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT1_3_MO40_NTn1_NTA4_NTB0_NTC1_NTD5_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,53722.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT64x64x256_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV1_MIWT2_2_MO40_NTn1_NTA4_NTB0_NTC3_NTD3_NTM0_NEPBS16_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1022,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,105.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_BBS_BH_Bias_HA_S_SAV_UserArgs_MT96x32x256_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA8_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA16_LPB16_LPM0_LRVW8_LWPMn1_MIAV0_MIWT3_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL1_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,798.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1573.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT16x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,12460.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x192x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA1_NTB4_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO1_SVW4_SK0_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,3169318.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI16x16x1_CMS_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_8_MO40_NTn1_NTA0_NTB0_NTC0_NTD4_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB8_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,1440,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,11324.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x256x128_MI32x32x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA16_LPB16_LPM0_LRVW16_LWPMn1_MIAV0_MIWT8_2_MO40_NTn1_NTA2_NTB2_NTC7_NTD5_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW8_SK3_SKFTR0_SKXCCM0_TLDS2_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA8_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,us,1245.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT256x48x128_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB8_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB128_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_3_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW4_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA4_VWB1_WSGRA0_WSGRB0_WS64_WG64_4_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,969157.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA0_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM0_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,81594,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,1160.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,804.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1260.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x32x1024_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT1_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,1112307.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA5_NTB1_NTC0_NTD3_NTM0_NEPBS14_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM4_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81592,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1647092.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV1_MIWT1_2_MO40_NTn1_NTA5_NTB2_NTC0_NTD1_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGROn1_VSn1_VWA1_VWB2_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,81591,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,us,621182.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT32x64x512_MI16x16x1_SN_LDSB0_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA1_DTLB1_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB1024_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB3_NTC1_NTD7_NTM0_NEPBS12_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO1_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO1_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG16_16_1,track_slice,,calls,81596,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,us,2038.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x16x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR0_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA512_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT4_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR0_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW1_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA1_VWB1_WSGRA0_WSGRB0_WS64_WG16_4_4,track_slice,,calls,240,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,us,1583.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_Alik_Bljk_F8BS_BH_Bias_HA_S_SAB_SAV_UserArgs_MT64x32x512_MI16x16x1_SN_LDSB1_AFC0_AFEM1_AFEM1_ASEM1_CLR1_CADS0_DTLA0_DTLB0_DTVA0_DTVB0_EPS0_FDSI0_GRPM1_GRVWA16_GRVWB16_GSU0_GSUAMB_GLS0_ISA950_IU1_K1_LDSTI0_LBSPPA1024_LBSPPB512_LBSPPM0_LPA32_LPB32_LPM0_LRVW16_LWPMn1_MIAV0_MIWT2_1_MO40_NTn1_NTA4_NTB0_NTC0_NTD0_NTM0_NEPBS0_NLCA1_NLCB1_ONLL0_PGR2_PLR1_PKA1_SIA3_SS1_SPO0_SRVW0_SSO0_SVW2_SK3_SKFTR0_SKXCCM8_TLDS1_ULSGRO0_USL1_UIOFGRO0_USFGRO0_VSn1_VWA2_VWB1_WSGRA0_WSGRB0_WS64_WG32_8_1,track_slice,,calls,160,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,us,484.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,Cijk_SB_BiasS_HAS_ScaleAB_ScaleAlphaVec_PostGSU8_VW4,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,us,2508317.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_ZN5aiter19scaled_quant_kernelIDF16bDB8_EEvPT0_PKT_PKfi,track_slice,,calls,329272,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,us,1954900.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_ZN5aiter24add_rmsnorm_quant_kernelIDF16bDF16bLi256ELi32ELb1ELb0ELb1ELi1EEEvPT0_PT_PfS4_S4_S4_diiiiiiib,track_slice,,calls,164631,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,us,8864.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_ZN7ck_tile6kentryILi1ENS_12Rmsnorm2dFwdINS_27Rmsnorm2dFwdPipelineOnePassINS_27Rmsnorm2dFwdPipelineProblemIDF16bDF16bfDF16bDF16bDF16bffNS_19Generic2dBlockShapeINS_8sequenceIJLi1ELi8192EEEENS5_IJLi1ELi256EEEENS5_IJLi1ELi8EEEEEENS_18Rmsnorm2dFwdTraitsILb1ELb0ELb0ELb0ELNS_21Rmsnorm2dFusedAddEnumE0ELNS_23Rmsnorm2dFusedQuantEnumE0ELNS_22Rmsnorm2dSensitiveEnumE0EEEEENS_33Rmsnorm2dFwdPipelineDefaultPolicyEEENS_17Default2DEpilogueINS_24Default2DEpilogueProblemIfDF16bLb0ELb1ELb0EEEvEEEEJNSM_5KargsEEEEvDpT1_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,__amd_rocclr_copyBuffer,track_slice,,us,1030083.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,__amd_rocclr_copyBuffer,track_slice,,calls,164860,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_compute_slot_mapping_kernel,track_slice,,us,10570.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_compute_slot_mapping_kernel,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_fwd_kernel,track_slice,,us,2859589.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,_fwd_kernel,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,one_shot_all_reduce_gluon,track_slice,,us,6688707.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,one_shot_all_reduce_gluon,track_slice,,calls,164826,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,persistent_all_gather_gluon,track_slice,,us,166548.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,persistent_all_gather_gluon,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,triton_poi_fused_1,track_slice,,us,583985.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,triton_poi_fused_1,track_slice,,calls,82318,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,triton_poi_fused_2,track_slice,,us,513404.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,triton_poi_fused_2,track_slice,,calls,82312,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,8839.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,us,688951.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,82318,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,us,55011.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void aiter::sampling::TopPSamplingFromProbKernel<1024u, (hipcub::HIPCUB_400200_NS::BlockScanAlgorithm)0, (hipcub::HIPCUB_400200_NS::BlockReduceAlgorithm)0, 4u, true, float, int>(float*, int*, int*, float*, float, unsigned int, unsigned long, unsigned long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,us,62002.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::(anonymous namespace)::cunn_SoftMaxForwardGmem<4, float, float, float, at::native::(anonymous namespace)::SoftMaxForwardWithMulEpilogue, long>(float*, float const*, long)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,us,15.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::_scatter_gather_elementwise_kernel<256, 4, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1}>(int, at::native::_cuda_scatter_gather_internal_kernel, long>::operator()(at::TensorIterator&, long, long, long, at::native::TensorAssign const&)::{lambda(int)#1})",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,4598.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#3}::operator()() const::{lambda(int)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,18439.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#4}::operator()() const::{lambda(long)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,us,14699.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 4, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast > >(at::TensorIteratorBase&, at::native::BinaryFunctor > const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,us,16727.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::elementwise_kernel_manual_unroll<128, 8, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1}>(int, at::native::gpu_kernel_impl_nocast(at::TensorIteratorBase&, at::native::direct_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda()#3}::operator()() const::{lambda()#12}::operator()() const::{lambda(c10::BFloat16)#1} const&)::{lambda(int, bool)#1})",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,us,5617.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::index_elementwise_kernel<128, 4, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1}>(long, at::native::gpu_index_kernel >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1}>(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef, at::native::index_kernel_impl >(at::TensorIteratorBase&, c10::ArrayRef, c10::ArrayRef)::{lambda(char*, char const*, long)#1} const&, bool)::{lambda(int)#1})",track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,4137.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::CUDAFunctorOnSelf_add, std::array, TrivialOffsetCalculator<1, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,18.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,us,29.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::unrolled_elementwise_kernel, std::array, 4, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast>(int, at::native::FillFunctor, std::array, TrivialOffsetCalculator<0, unsigned int>, TrivialOffsetCalculator<1, unsigned int>, at::native::memory::LoadWithoutCast, at::native::memory::StoreWithoutCast)",track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,33.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,17.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<2, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5757.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,us,5758.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::CUDAFunctor_add, std::array >(int, at::native::CUDAFunctor_add, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,us,11608.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::FillFunctor, std::array >(int, at::native::FillFunctor, std::array)",track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,us,9951.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_elementwise_kernel<4, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array >(int, at::native::bfloat16tofloat32_copy_kernel_cuda(at::TensorIteratorBase&)::{lambda(c10::BFloat16)#1}, std::array)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,us,6384.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void at::native::vectorized_gather_kernel<16, long>(char*, char*, long*, int, long, long, long, long, bool)",track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,us,2516287.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void paged_attention_ll4mi_QKV_mfma16_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1, __hip_bfloat16, 16, 128, 256, false, 8, (MFMAType)0>(__hip_bfloat16 const*, unsigned char const*, unsigned char const*, int, float, int const*, int const*, int const*, int, float const*, int, int, int, float*, float*, __hip_bfloat16*, __hip_bfloat16*, int, float const*, float const*)",track_slice,,calls,82310,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,us,519104.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void paged_attention_ll4mi_reduce_kernel<__hip_bfloat16, __hip_bfloat16, 128, 128, 256, 1>(__hip_bfloat16*, float const*, float const*, __hip_bfloat16 const*, int const*, int const*, int, float const*)",track_slice,,calls,82317,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,us,4555235.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void quickreduce::allreduce_prototype_twoshot, true>, __half>(__half const*, __half*, unsigned int, unsigned int, int, unsigned char**, unsigned int, unsigned int, long)",track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,us,563674.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void vllm::reshape_and_cache_kernel<__hip_bfloat16, unsigned char, (vllm::Fp8KVCacheDataType)1>(__hip_bfloat16 const*, __hip_bfloat16 const*, unsigned char*, unsigned char*, long const*, int, int, int, int, int, int, float const*, float const*)",track_slice,,calls,82316,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,us,2721.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void wvSplitKQ_hf_sml_<__hip_bfloat16, c10::Float8_e4m3fn, 64, 2, 16, 16, 2, 2>(int, int, int, int, int, int, c10::Float8_e4m3fn const*, c10::Float8_e4m3fn const*, __hip_bfloat16 const*, __hip_bfloat16*, float const*, float const*, int, int)",track_slice,,calls,320,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,us,92.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,kernel,"void wvSplitK_hf_sml_<__hip_bfloat16, 64, 4, 16, 8, 2, 2>(int, int, int, int, int, int, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16 const*, __hip_bfloat16*, int, int)",track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,us,5865.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,9,gpu_memcpy,Memcpy DtoD (Device -> Device),track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,## Call CompiledFxGraph fmlepejdd7525uvuhb7i2ypn6pvhiffmkypt342a5zdt2caorioa ##,track_slice,,us,15.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,## Call CompiledFxGraph fmlepejdd7525uvuhb7i2ypn6pvhiffmkypt342a5zdt2caorioa ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,## Call CompiledFxGraph fvb5jcpvsq53xvlhwkz7j3s224c3d34xcbbky4yh3t52snno52ri ##,track_slice,,us,6.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,## Call CompiledFxGraph fvb5jcpvsq53xvlhwkz7j3s224c3d34xcbbky4yh3t52snno52ri ##,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,## Call CompiledFxGraph fxt4j3nrtltbsru56tfce3u24m3b42eq3jmwgu2rgoru2pykpnv6 ##,track_slice,,us,399.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,## Call CompiledFxGraph fxt4j3nrtltbsru56tfce3u24m3b42eq3jmwgu2rgoru2pykpnv6 ##,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,us,1636.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,_C_cache_ops::reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,us,1044.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,_C_custom_ar::qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,_rocm_C::paged_attention,track_slice,,us,1100.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,_rocm_C::paged_attention,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,_rocm_C::wvSplitK,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,_rocm_C::wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::add_rmsnorm,track_slice,,us,667.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::add_rmsnorm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::gemm_a16w16,track_slice,,us,1858.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::get_padded_m,track_slice,,us,27.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::get_padded_m,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::rms_norm,track_slice,,us,22.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::static_per_tensor_quant,track_slice,,us,1081.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::static_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,us,3098.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aiter::top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_local_scalar_dense,track_slice,,us,370.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_local_scalar_dense,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_reshape_alias,track_slice,,us,562.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_reshape_alias,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_scaled_mm,track_slice,,us,106316.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_scaled_mm,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_softmax,track_slice,,us,2876.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_to_copy,track_slice,,us,6919.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_to_copy,track_slice,,calls,6180,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_unsafe_view,track_slice,,us,555.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::_unsafe_view,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::add,track_slice,,us,7947.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::add,track_slice,,calls,3087,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::add_,track_slice,,us,2386.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::add_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::alias,track_slice,,us,678.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::alias,track_slice,,calls,2629,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::as_strided,track_slice,,us,13101.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::as_strided,track_slice,,calls,61488,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::clone,track_slice,,us,1114.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::clone,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::copy_,track_slice,,us,37790.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::copy_,track_slice,,calls,19576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::detach,track_slice,,us,1574.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::detach,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::detach_,track_slice,,us,108.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::detach_,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::div_,track_slice,,us,4004.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::div_,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::empty,track_slice,,us,8813.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::empty,track_slice,,calls,8323,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::empty_like,track_slice,,us,1839.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::empty_like,track_slice,,calls,3839,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::empty_strided,track_slice,,us,12655.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::empty_strided,track_slice,,calls,8990,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::fill_,track_slice,,us,7493.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::fill_,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::flatten,track_slice,,us,1027.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::flatten,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::index,track_slice,,us,17229.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::index,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::index_select,track_slice,,us,1531.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::index_select,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::item,track_slice,,us,1449.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::item,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::lift_fresh,track_slice,,us,308.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::lift_fresh,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::linear,track_slice,,us,1402.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::linear,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::lt,track_slice,,us,2136.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::lt,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::matmul,track_slice,,us,901.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::matmul,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::mm,track_slice,,us,35331.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::movedim,track_slice,,us,1519.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::movedim,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::permute,track_slice,,us,911.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::permute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::reshape,track_slice,,us,5155.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::reshape,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::resize_,track_slice,,us,1351.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::resize_,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::resolve_conj,track_slice,,us,183.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::resolve_conj,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::resolve_neg,track_slice,,us,111.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::resolve_neg,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::scatter_,track_slice,,us,36.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::scatter_,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::select,track_slice,,us,4431.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::select,track_slice,,calls,4686,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::slice,track_slice,,us,28135.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::slice,track_slice,,calls,49021,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::softmax,track_slice,,us,1416.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::softmax,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::sub,track_slice,,us,4912.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::sub,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::t,track_slice,,us,2866.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::t,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::to,track_slice,,us,3899.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::to,track_slice,,calls,12760,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::transpose,track_slice,,us,2109.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::transpose,track_slice,,calls,4227,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::unbind,track_slice,,us,1053.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::unbind,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::unsqueeze,track_slice,,us,2199.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::unsqueeze,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::view,track_slice,,us,9509.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::view,track_slice,,calls,17953,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::zero_,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,aten::zero_,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,triton_poi_fused_1,track_slice,,us,734.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,triton_poi_fused_1,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,triton_poi_fused_2,track_slice,,us,572.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,triton_poi_fused_2,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,us,38.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,triton_poi_fused_add_bitwise_and_bitwise_not_bitwise_or_embedding_ge_lt_masked_fill_mul_sub_unsqueeze_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,us,755.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,triton_poi_fused_mul_silu_slice_0,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::all_gather,track_slice,,us,2066.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::all_reduce,track_slice,,us,775.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,us,1693.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::rocm_aiter_per_tensor_quant,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,1692.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,us,3308.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::unified_attention_with_output,track_slice,,us,755.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::unified_kv_cache_update,track_slice,,us,545.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm::unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,us,772.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm_aiter::fused_add_rms_norm,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm_aiter::rms_norm,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cpu_op,vllm_aiter::rms_norm,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipCtxGetCurrent,track_slice,,us,127.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipCtxGetCurrent,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipDeviceGetAttribute,track_slice,,us,310.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipDeviceGetAttribute,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipDeviceSynchronize,track_slice,,us,30.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipDeviceSynchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipEventDestroy,track_slice,,us,1139.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipEventDestroy,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipEventRecord,track_slice,,us,8808.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipEventRecord,track_slice,,calls,4124,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipEventSynchronize,track_slice,,us,17506645.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipEventSynchronize,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,us,12725.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipExtModuleLaunchKernel,track_slice,,calls,2627,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipFuncSetAttribute,track_slice,,us,443.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipFuncSetAttribute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,us,3110.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipGetDevicePropertiesR0600,track_slice,,calls,7886,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipGraphLaunch,track_slice,,us,679770.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipGraphLaunch,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipHostMalloc,track_slice,,us,289.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipHostMalloc,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipLaunchKernel,track_slice,,us,79313.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipLaunchKernel,track_slice,,calls,20897,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipMemcpyAsync,track_slice,,us,51418.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipMemcpyAsync,track_slice,,calls,12373,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipModuleLaunchKernel,track_slice,,us,15167.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipModuleLaunchKernel,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipPointerGetAttribute,track_slice,,us,3122.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipPointerGetAttribute,track_slice,,calls,15618,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipStreamIsCapturing,track_slice,,us,3012.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipStreamIsCapturing,track_slice,,calls,12372,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipStreamWaitEvent,track_slice,,us,5648.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,cuda_runtime,hipStreamWaitEvent,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/fp/cfpir3hvkoeggeeq2lcg7esslx33azk5aq7agyft5dahncrj7cmy.py(501): call,track_slice,,us,12508.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/fp/cfpir3hvkoeggeeq2lcg7esslx33azk5aq7agyft5dahncrj7cmy.py(501): call,track_slice,,calls,395,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/pi/cpifpxasleks2j42hpa2eribg5fpieklexuomarq26o4sg4xvns7.py(580): call,track_slice,,us,205.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/pi/cpifpxasleks2j42hpa2eribg5fpieklexuomarq26o4sg4xvns7.py(580): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/t4/ct46ozzmfiraqdcxtuf73xupm2lszo7sxbxtyq36xvyopbtcjgqe.py(196): call,track_slice,,us,140.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,/root/.cache/vllm/torch_compile_cache/torch_aot_compile/53659b0cbad935ce8e797d806ccc430bc3241eaa32743c56038b946d3f2dfff9/inductor_cache/t4/ct46ozzmfiraqdcxtuf73xupm2lszo7sxbxtyq36xvyopbtcjgqe.py(196): call,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,203.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,486.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,113.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,771.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,3663,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,892.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1594.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1294.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,105.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,406,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,195.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1167.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1426.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1605,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,52.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,219.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3154.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,982.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1311.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1158.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2190,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,4796.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,250.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,24.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,16.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,941.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,212.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,35,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,268.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,4794.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,29139,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1583.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3719.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,44655,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1162.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14784,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,73.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,8246.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,126279,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,100.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,126.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1057,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,11268.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,15339.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,357543,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1720.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,30599.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,6916.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,65872,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,586.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2053,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,118454.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2704876,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,12377.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,31893,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,7381.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,18694,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,463588.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2700749,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,7.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,80,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,6789.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,953.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2431.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2541.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,964.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,59.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3313.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1136.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,417.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,111471.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2704877,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,359.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4122,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2963.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,187.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,124.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,410,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,5035.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,12308,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1527.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1811.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4921,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,8401.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1593.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,616.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,17.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1622.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,827.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1649.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2857.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,7960.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,143838,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,133.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3201.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,66042,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,368.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,608.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,232.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,201.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,8561.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,9280,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,4779.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3860.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,26705,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,780.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,5732,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,813.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,6977,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,50.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,576,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1362.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,609.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4468,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,6638.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,3857,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1713.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1494.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,14318.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,200578,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1551.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2059,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,5266.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,5145,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1642.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1226.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3616.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3261.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,23695.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,367095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,30.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2991.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1991.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,285.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1610,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,18472.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,66501,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,701.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,7509,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,998.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2238,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,320.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2075,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,767.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,542.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1586.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1217.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1200.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1574.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1242.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,9497,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,178.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,5599.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1152.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,61.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,894,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1126.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1813.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2682.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,10171.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2068,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,4533.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,4142.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,6568.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4118,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,684.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,21.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,121.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3589.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,687.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,370.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1432.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2256.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,5155,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1448.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,301.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,106.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,407,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1357.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1480.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3746.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,20745,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2351.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,7980.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1035,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,9948.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4522,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,294.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,3713.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1365.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,975.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,923.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,2320.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1898.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,909.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,141.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,454.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,9073.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,12803,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,1156.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,75.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(804): get,track_slice,,us,1892.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(804): get,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(117): __instancecheck__,track_slice,,us,256.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(117): __instancecheck__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(133): _splitext,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(133): _splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(16): exists,track_slice,,us,540.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(16): exists,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(1390): _handle_fromlist,track_slice,,us,384.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(1390): _handle_fromlist,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(645): parent,track_slice,,us,909.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(645): parent,track_slice,,calls,6400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(709): __getitem__,track_slice,,us,4878.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(709): __getitem__,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(791): encode,track_slice,,us,2175.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(791): encode,track_slice,,calls,6758,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(795): decode,track_slice,,us,726.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(795): decode,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(808): getenv,track_slice,,us,1105.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(808): getenv,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(117): splitext,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(117): splitext,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(169): basename,track_slice,,us,13.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(169): basename,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(41): _get_sep,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(41): _get_sep,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(52): normcase,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(52): normcase,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(0): ,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(0): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(1): ,track_slice,,us,400.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(1): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(1): ,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(1): ,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(1): launcher,track_slice,,us,594.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(1): launcher,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(104): __vllm_inlined_submods__41,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(104): __vllm_inlined_submods__41,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(109): __vllm_inlined_submods__43,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(109): __vllm_inlined_submods__43,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(114): __vllm_inlined_submods__45,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(114): __vllm_inlined_submods__45,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(119): __vllm_inlined_submods__47,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(119): __vllm_inlined_submods__47,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(124): __vllm_inlined_submods__49,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(124): __vllm_inlined_submods__49,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(129): __vllm_inlined_submods__51,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(129): __vllm_inlined_submods__51,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(134): __vllm_inlined_submods__53,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(134): __vllm_inlined_submods__53,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(139): __vllm_inlined_submods__55,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(139): __vllm_inlined_submods__55,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(14): __vllm_inlined_submods__5,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(14): __vllm_inlined_submods__5,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(144): __vllm_inlined_submods__57,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(144): __vllm_inlined_submods__57,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(149): __vllm_inlined_submods__59,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(149): __vllm_inlined_submods__59,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(154): __vllm_inlined_submods__61,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(154): __vllm_inlined_submods__61,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(159): __vllm_inlined_submods__63,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(159): __vllm_inlined_submods__63,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(164): __vllm_inlined_submods__65,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(164): __vllm_inlined_submods__65,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(169): __vllm_inlined_submods__67,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(169): __vllm_inlined_submods__67,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(174): __vllm_inlined_submods__69,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(174): __vllm_inlined_submods__69,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(179): __vllm_inlined_submods__71,track_slice,,us,10.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(179): __vllm_inlined_submods__71,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(184): __vllm_inlined_submods__73,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(184): __vllm_inlined_submods__73,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(189): __vllm_inlined_submods__75,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(189): __vllm_inlined_submods__75,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(19): __vllm_inlined_submods__7,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(19): __vllm_inlined_submods__7,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(194): __vllm_inlined_submods__77,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(194): __vllm_inlined_submods__77,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(199): __vllm_inlined_submods__79,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(199): __vllm_inlined_submods__79,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(2): __eq__,track_slice,,us,951.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(2): __eq__,track_slice,,calls,3072,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(2): __hash__,track_slice,,us,1847.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(2): __hash__,track_slice,,calls,4101,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(2): __init__,track_slice,,us,4149.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(2): __init__,track_slice,,calls,7289,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(2): dynamic_func,track_slice,,us,22725.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(2): dynamic_func,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(204): __vllm_inlined_submods__81,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(204): __vllm_inlined_submods__81,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(209): __vllm_inlined_submods__83,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(209): __vllm_inlined_submods__83,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(214): __vllm_inlined_submods__85,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(214): __vllm_inlined_submods__85,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(219): __vllm_inlined_submods__87,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(219): __vllm_inlined_submods__87,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(224): __vllm_inlined_submods__89,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(224): __vllm_inlined_submods__89,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(229): __vllm_inlined_submods__91,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(229): __vllm_inlined_submods__91,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(234): __vllm_inlined_submods__93,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(234): __vllm_inlined_submods__93,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(239): __vllm_inlined_submods__95,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(239): __vllm_inlined_submods__95,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(24): __vllm_inlined_submods__9,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(24): __vllm_inlined_submods__9,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(244): __vllm_inlined_submods__97,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(244): __vllm_inlined_submods__97,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(249): __vllm_inlined_submods__99,track_slice,,us,8.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(249): __vllm_inlined_submods__99,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(254): __vllm_inlined_submods__101,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(254): __vllm_inlined_submods__101,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(259): __vllm_inlined_submods__103,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(259): __vllm_inlined_submods__103,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(264): __vllm_inlined_submods__105,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(264): __vllm_inlined_submods__105,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(269): __vllm_inlined_submods__107,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(269): __vllm_inlined_submods__107,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(274): __vllm_inlined_submods__109,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(274): __vllm_inlined_submods__109,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(279): __vllm_inlined_submods__111,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(279): __vllm_inlined_submods__111,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(284): __vllm_inlined_submods__113,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(284): __vllm_inlined_submods__113,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(289): __vllm_inlined_submods__115,track_slice,,us,9.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(289): __vllm_inlined_submods__115,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(29): __vllm_inlined_submods__11,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(29): __vllm_inlined_submods__11,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(294): __vllm_inlined_submods__117,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(294): __vllm_inlined_submods__117,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(299): __vllm_inlined_submods__119,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(299): __vllm_inlined_submods__119,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(304): __vllm_inlined_submods__121,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(304): __vllm_inlined_submods__121,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(309): __vllm_inlined_submods__123,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(309): __vllm_inlined_submods__123,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(314): __vllm_inlined_submods__125,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(314): __vllm_inlined_submods__125,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(319): __vllm_inlined_submods__127,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(319): __vllm_inlined_submods__127,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(324): __vllm_inlined_submods__129,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(324): __vllm_inlined_submods__129,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(329): __vllm_inlined_submods__131,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(329): __vllm_inlined_submods__131,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(334): __vllm_inlined_submods__133,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(334): __vllm_inlined_submods__133,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(339): __vllm_inlined_submods__135,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(339): __vllm_inlined_submods__135,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(34): __vllm_inlined_submods__13,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(34): __vllm_inlined_submods__13,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(344): __vllm_inlined_submods__137,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(344): __vllm_inlined_submods__137,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(349): __vllm_inlined_submods__139,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(349): __vllm_inlined_submods__139,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(354): __vllm_inlined_submods__141,track_slice,,us,9.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(354): __vllm_inlined_submods__141,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(359): __vllm_inlined_submods__143,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(359): __vllm_inlined_submods__143,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(364): __vllm_inlined_submods__145,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(364): __vllm_inlined_submods__145,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(369): __vllm_inlined_submods__147,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(369): __vllm_inlined_submods__147,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(374): __vllm_inlined_submods__149,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(374): __vllm_inlined_submods__149,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(379): __vllm_inlined_submods__151,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(379): __vllm_inlined_submods__151,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(384): __vllm_inlined_submods__153,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(384): __vllm_inlined_submods__153,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(389): __vllm_inlined_submods__155,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(389): __vllm_inlined_submods__155,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(39): __vllm_inlined_submods__15,track_slice,,us,10.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(39): __vllm_inlined_submods__15,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(394): __vllm_inlined_submods__157,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(394): __vllm_inlined_submods__157,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(399): __vllm_inlined_submods__159,track_slice,,us,9.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(399): __vllm_inlined_submods__159,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(4): __vllm_inlined_submods__1,track_slice,,us,18.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(4): __vllm_inlined_submods__1,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(404): execution_fn,track_slice,,us,6655.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(404): execution_fn,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(44): __vllm_inlined_submods__17,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(44): __vllm_inlined_submods__17,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(49): __vllm_inlined_submods__19,track_slice,,us,10.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(49): __vllm_inlined_submods__19,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(54): __vllm_inlined_submods__21,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(54): __vllm_inlined_submods__21,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(59): __vllm_inlined_submods__23,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(59): __vllm_inlined_submods__23,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(64): __vllm_inlined_submods__25,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(64): __vllm_inlined_submods__25,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(69): __vllm_inlined_submods__27,track_slice,,us,10.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(69): __vllm_inlined_submods__27,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(74): __vllm_inlined_submods__29,track_slice,,us,10.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(74): __vllm_inlined_submods__29,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(79): __vllm_inlined_submods__31,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(79): __vllm_inlined_submods__31,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(84): __vllm_inlined_submods__33,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(84): __vllm_inlined_submods__33,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(89): __vllm_inlined_submods__35,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(89): __vllm_inlined_submods__35,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(9): __vllm_inlined_submods__3,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(9): __vllm_inlined_submods__3,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(94): __vllm_inlined_submods__37,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(94): __vllm_inlined_submods__37,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(99): __vllm_inlined_submods__39,track_slice,,us,10.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,(99): __vllm_inlined_submods__39,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1150): _is_union,track_slice,,calls,168,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1186): _ensure_loaded,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1326): caller,track_slice,,us,327.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1326): caller,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,us,19.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1427): ctypes_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1431): ctypes_custom_wrapper,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,us,8929.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1440): wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1685): ,track_slice,,us,539.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1685): ,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1686): ,track_slice,,us,995.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1686): ,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,us,1495.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(1704): custom_wrapper,track_slice,,calls,2405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/jit/core.py(192): AITER_CONFIG_GEMM_BF16_FILE,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,us,1829.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/quant.py(583): per_tensor_quant_hip,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,us,530.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/rmsnorm.py(76): rmsnorm2d_fwd_with_add,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,us,721.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/sampling.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,us,634.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(153): should_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,us,658.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(209): should_allgather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,us,5241.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(223): _get_allgather_buffers,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,us,6280.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(239): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,us,162.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/ops/triton/comms/communicator.py(29): _is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,us,207.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(106): get_GEMM_A16W16_config,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,us,781.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(202): save_shapes,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,us,5823.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(252): gemm_a16w16,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,us,795.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(378): torch_gemm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,us,719.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(598): mm,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/tuned_gemm.py(82): is_skinny_default_shape,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,us,12406.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,aiter/utility/dtypes.py(45): torch_to_aiter_pybind,track_slice,,calls,4800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(104): __init__,track_slice,,us,5695.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(104): __init__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(132): __enter__,track_slice,,us,2958.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(132): __enter__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(141): __exit__,track_slice,,us,2611.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(141): __exit__,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(299): helper,track_slice,,us,3357.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(299): helper,track_slice,,calls,9277,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(772): __init__,track_slice,,us,512.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(772): __init__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(775): __enter__,track_slice,,us,502.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(775): __enter__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(778): __exit__,track_slice,,us,418.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,contextlib.py(778): __exit__,track_slice,,calls,11102,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,copy.py(247): _reconstruct,track_slice,,us,1702.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,copy.py(247): _reconstruct,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,copy.py(61): copy,track_slice,,us,3480.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,copy.py(61): copy,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,copyreg.py(98): __newobj__,track_slice,,us,458.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,copyreg.py(98): __newobj__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,us,1617.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(19): compile,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,us,9397.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/sampling/top_p_sampling_from_probs.py(38): top_p_sampling_from_probs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,us,9255.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/sampling/util.py(8): get_seed_and_offset,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,us,550.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/torch_utils.py(109): _op_func,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,us,8949.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/torch_utils.py(48): torch_to_c_types,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,us,769.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/utils.py(275): not_built,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,us,3470.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,csrc/cpp_itfs/utils.py(279): compile_template_op,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,ctypes/__init__.py(517): cast,track_slice,,us,4038.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,ctypes/__init__.py(517): cast,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(1128): __new__,track_slice,,us,8.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(1128): __new__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(1266): __hash__,track_slice,,us,1023.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(1266): __hash__,track_slice,,calls,10276,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(1291): value,track_slice,,us,306.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(1291): value,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(202): __get__,track_slice,,us,1547.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(202): __get__,track_slice,,calls,6770,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(720): __call__,track_slice,,us,30.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,enum.py(720): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,functools.py(982): __get__,track_slice,,us,1077.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,functools.py(982): __get__,track_slice,,calls,1093,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(2796): name,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(2796): name,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(2808): kind,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(2808): kind,track_slice,,calls,112,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(2888): __init__,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(2888): __init__,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(2949): apply_defaults,track_slice,,us,30.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(2949): apply_defaults,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(3089): parameters,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(3089): parameters,track_slice,,calls,28,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(3133): _bind,track_slice,,us,160.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(3133): _bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(3275): bind,track_slice,,us,14.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,inspect.py(3275): bind,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,us,3878.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/ccl/all_gather.py(13): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,us,6176.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/ccl/gluon/all_gather.py(166): launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,us,821.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/ccl/utils.py(61): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,us,127.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/distributed/helpers.py(234): extract_group_info,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/iris.py(1092): get_rank,track_slice,,us,54.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/iris.py(1092): get_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,us,33.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/iris.py(1106): get_num_ranks,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/iris.py(1173): all_gather,track_slice,,us,1015.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/iris.py(1173): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/iris.py(960): get_device_context,track_slice,,us,72.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/iris.py(960): get_device_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,us,375.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/logging/logging.py(58): _log_rank,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,us,2324.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/tracing/kernel_artifacts.py(54): iris_launch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,us,304.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,iris/host/tracing/kernel_artifacts.py(86): _get_kernel_name,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,json/__init__.py(183): dumps,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,json/__init__.py(183): dumps,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,json/encoder.py(105): __init__,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,json/encoder.py(105): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,json/encoder.py(183): encode,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,json/encoder.py(183): encode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,json/encoder.py(205): iterencode,track_slice,,us,21.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,json/encoder.py(205): iterencode,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1011): handle,track_slice,,us,18.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1011): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1137): flush,track_slice,,us,21.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1137): flush,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1148): emit,track_slice,,us,33.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1148): emit,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(129): getLevelName,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(129): getLevelName,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1517): debug,track_slice,,us,605.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1517): debug,track_slice,,calls,2063,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1529): info,track_slice,,us,18.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1529): info,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1611): findCaller,track_slice,,us,29.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1611): findCaller,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1645): makeRecord,track_slice,,us,17.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1645): makeRecord,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1660): _log,track_slice,,us,30.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1660): _log,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1686): handle,track_slice,,us,18.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1686): handle,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(170): ,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(170): ,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1746): callHandlers,track_slice,,us,14.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1746): callHandlers,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,us,583.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(1790): isEnabledFor,track_slice,,calls,3099,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,us,21.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(200): _is_internal_frame,track_slice,,calls,21,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(298): __init__,track_slice,,us,133.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(298): __init__,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(383): getMessage,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(383): getMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(447): usesTime,track_slice,,us,7.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(447): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(455): _format,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(455): _format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(462): format,track_slice,,us,5.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(462): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(668): usesTime,track_slice,,us,9.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(668): usesTime,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(674): formatMessage,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(674): formatMessage,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(690): format,track_slice,,us,25.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(690): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(831): filter,track_slice,,us,5.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(831): filter,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(968): acquire,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(968): acquire,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(975): release,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(975): release,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(988): format,track_slice,,us,11.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,logging/__init__.py(988): format,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/connection.py(250): recv,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/connection.py(250): recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/connection.py(395): _recv,track_slice,,us,9.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/connection.py(395): _recv,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/connection.py(430): _recv_bytes,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/process.py(108): run,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/process.py(108): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/process.py(189): name,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/process.py(189): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/process.py(314): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/process.py(37): current_process,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/process.py(37): current_process,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,705.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,8244,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/spawn.py(122): spawn_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/spawn.py(135): _main,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,multiprocessing/spawn.py(135): _main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,us,18.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,nn.Module: LlamaForCausalLM_0,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,nn.Module: LogitsProcessor_0,track_slice,,us,1408.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,nn.Module: LogitsProcessor_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,nn.Module: Sampler_0,track_slice,,us,1493.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,nn.Module: Sampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,nn.Module: TopKTopPSampler_0,track_slice,,us,1006.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,nn.Module: TopKTopPSampler_0,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,us,538.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/_methods.py(43): _amax,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/_methods.py(59): _any,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/_methods.py(59): _any,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,us,80.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(2023): _nonzero_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,us,389.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(2027): nonzero,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,us,92.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(2900): _cumsum_dispatcher,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,us,548.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(2904): cumsum,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,us,148.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(463): _repeat_dispatcher,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,us,927.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(467): repeat,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,us,1752.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/fromnumeric.py(51): _wrapfunc,track_slice,,calls,4116,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,us,101.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/multiarray.py(1101): copyto,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/numeric.py(144): ones,track_slice,,us,2831.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,numpy/_core/numeric.py(144): ones,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,queue.py(122): put,track_slice,,us,13.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,queue.py(122): put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,queue.py(213): _put,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,queue.py(213): _put,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1012): run,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1182): name,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1182): name,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1485): current_thread,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(1485): current_thread,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(299): __enter__,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(302): __exit__,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(314): _is_owned,track_slice,,us,1.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(314): _is_owned,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(394): notify,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_compile.py(42): inner,track_slice,,us,30.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_compile.py(42): inner,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,us,185.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/aot_compile.py(218): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,us,82.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/eval_frame.py(1240): _fn,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,us,11.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/eval_frame.py(233): _callback_from_stance,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,us,58.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/metrics_context.py(238): finish,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,us,103.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/utils.py(367): get_runtime_metrics_context,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,us,5.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/utils.py(5032): call_size,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,us,32.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/utils.py(5203): record_pregraph_bytecode_enter,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_dynamo/utils.py(5214): record_pregraph_bytecode_exit,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,us,483.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(298): maybe_mark_dynamic_helper,track_slice,,calls,2005,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,us,183.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(445): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,us,908.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(516): record_runtime_wrapper_prologue_enter,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,us,85.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(528): record_runtime_wrapper_prologue_exit,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,us,4140.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(534): runtime_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,us,27.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(543): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,us,246.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/runtime_wrappers.py(769): wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,us,807.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/utils.py(124): call_func_at_runtime_with_args,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,us,127.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_functorch/_aot_autograd/utils.py(84): normalize_as_list,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,us,1428.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/output_code.py(628): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,us,37.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/autotune_cache.py(488): end_compile,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,us,1669.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/static_triton_launcher.py(232): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,us,1287.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/triton_heuristics.py(1385): get_profiler_kwargs,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,us,378.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/triton_heuristics.py(1386): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,us,67.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/triton_heuristics.py(1387): ,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,us,5725.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/runtime/triton_heuristics.py(1407): run,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,us,172.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/standalone_compile.py(121): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,us,318.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/standalone_compile.py(236): ,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,us,171.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/utils.py(3206): is_rocm,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/utils.py(3397): run,track_slice,,us,3985.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/utils.py(3397): run,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,us,2458.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_inductor/utils.py(3425): copy_misaligned_inputs,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,us,660.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_jit_internal.py(103): is_scripting,track_slice,,calls,20105,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1079): __call__,track_slice,,us,624.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1079): __call__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,us,967.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1130): _contains_fake_script_object,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,us,695.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1144): _must_dispatch_in_python,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1145): ,track_slice,,us,499.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1145): ,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1257): __call__,track_slice,,us,2717.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(1257): __call__,track_slice,,calls,9971,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(864): __call__,track_slice,,us,857.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_ops.py(864): __call__,track_slice,,calls,4810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_tensor.py(1187): __len__,track_slice,,us,474.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_tensor.py(1187): __len__,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_tensor.py(1203): __iter__,track_slice,,us,1029.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_tensor.py(1203): __iter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,us,1194.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(788): _get_available_device_type,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,us,2895.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(805): _get_device_attr,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,us,1490.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(821): _get_current_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(823): ,track_slice,,us,894.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(823): ,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(847): _get_device_index,track_slice,,us,5218.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/_utils.py(847): _get_device_index,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,us,3273.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(279): __init__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,us,2254.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(284): __new__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,us,6946.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(289): __enter__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,us,1412.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(293): __exit__,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,us,2559.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/grad_mode.py(296): clone,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,us,143.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/graph.py(242): increment_version,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,us,33.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(398): _start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(403): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,us,1117.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(841): __init__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,us,1238.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(854): __enter__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,us,3165.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/autograd/profiler.py(860): __exit__,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,us,367.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/backends/cuda/__init__.py(39): is_built,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/compiler/__init__.py(442): is_compiling,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/compiler/__init__.py(482): is_exporting,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,us,968.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(1099): device_count,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,us,2565.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(1146): current_device,track_slice,,calls,8189,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(1152): synchronize,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,us,6023.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(1178): current_stream,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,us,1307.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(152): _is_compiled,track_slice,,calls,11462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,us,1305.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(157): _nvml_based_avail,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,us,2648.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(161): is_available,track_slice,,calls,5731,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,us,1496.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(401): is_initialized,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,us,1949.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(450): _lazy_init,track_slice,,calls,12891,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,us,38.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(579): __init__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,us,97.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(583): __enter__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,us,118.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(586): __exit__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(599): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(603): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,us,6.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(606): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,us,216.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(626): set_device,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,us,1256.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(719): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,us,1628.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(734): __enter__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,us,736.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(749): __exit__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(763): stream,track_slice,,us,396.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(763): stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,us,469.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(776): _set_stream_by_id,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,us,826.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/__init__.py(791): set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,us,7186.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/_utils.py(517): _get_device_index,track_slice,,calls,6136,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/graphs.py(137): replay,track_slice,,us,836.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/graphs.py(137): replay,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/nccl.py(35): version,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/nccl.py(35): version,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(183): __new__,track_slice,,us,482.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(183): __new__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(199): record,track_slice,,us,507.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(199): record,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(211): wait,track_slice,,us,323.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(211): wait,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(37): __new__,track_slice,,us,4991.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(37): __new__,track_slice,,calls,4701,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,us,297.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(48): wait_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,us,1205.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(65): wait_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(79): record_event,track_slice,,us,1009.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/cuda/streams.py(79): record_event,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/__init__.py(17): is_available,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1036): _rank_not_in_group,track_slice,,calls,16,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,us,12.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1118): get_process_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,us,7.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1132): _get_group_size,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1333): is_initialized,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1359): _get_default_group,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,us,11.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1390): get_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,us,13.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1410): get_backend,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,us,24.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1470): _get_pg_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,us,7.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1485): _get_all_pg_configs,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(1494): get_pg_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(2464): get_rank,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(2491): get_world_size,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(317): __new__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,us,7.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(5831): _get_process_group_name,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(629): default_pg,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(643): pg_map,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(656): pg_names,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(666): pg_group_ranks,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(676): pg_backend_config,track_slice,,calls,13,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(686): group_count,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/distributed/distributed_c10d.py(758): WORLD,track_slice,,calls,23,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/jit/__init__.py(129): annotate,track_slice,,us,71.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/jit/__init__.py(129): annotate,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,us,5055.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/nn/modules/module.py(1783): _call_impl,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,us,2641.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/nn/modules/module.py(1955): __getattr__,track_slice,,calls,5721,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,us,22.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(236): start_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,us,4.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(278): stop_trace,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,us,6.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(385): add_metadata_json,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,us,30.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(400): _get_distributed_info,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(417): ,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(417): ,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(872): start,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(872): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(879): stop,track_slice,,us,3.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(879): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(924): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/profiler/profiler.py(928): _transit_action,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/storage.py(74): size,track_slice,,us,1450.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/storage.py(74): size,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,us,638.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_config_module.py(369): __getattr__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,us,45.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_config_module.py(412): _get_alias_module_and_name,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,us,142.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_config_module.py(425): _get_alias_val,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,us,18537.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_contextlib.py(120): decorate_context,track_slice,,calls,4520,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,us,83.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_debug_mode.py(1587): get_active_debug_mode,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch/utils/_typing_utils.py(13): not_none,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch_guard.py(205): wrapper,track_slice,,us,1002.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch_guard.py(205): wrapper,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch_guard.py(286): wrapper_custom,track_slice,,us,2918.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch_guard.py(286): wrapper_custom,track_slice,,calls,3446,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch_guard.py(309): outer_wrapper,track_slice,,us,1058.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch_guard.py(309): outer_wrapper,track_slice,,calls,3432,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,us,13.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,torch_guard.py(326): outer_wrapper_dummy,track_slice,,calls,14,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/__init__.py(67): cdiv,track_slice,,us,73.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/__init__.py(67): cdiv,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,us,251.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/__init__.py(72): next_power_of_2,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,us,8452.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/amd/compiler.py(168): is_within_2gb,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,us,9584.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/amd/compiler.py(186): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,us,2681.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/amd/driver.py(413): __call__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,us,204.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/amd/driver.py(416): allocate_scratch,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,us,3261.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/backends/compiler.py(88): get_tensor_specialization,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,us,291.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/compiler/compiler.py(376): __init__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,us,304.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/compiler/compiler.py(439): _init_handles,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/compiler/compiler.py(476): run,track_slice,,us,141.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/compiler/compiler.py(476): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,us,3643.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/compiler/compiler.py(482): launch_metadata,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/knobs.py(130): get,track_slice,,us,1132.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/knobs.py(130): get,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/knobs.py(422): __call__,track_slice,,us,1677.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/knobs.py(422): __call__,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/knobs.py(75): __get__,track_slice,,us,3691.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/knobs.py(75): __get__,track_slice,,calls,11603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,us,788.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/language/core.py(352): _unwrap_if_constexpr,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,us,269.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/_allocation.py(29): set_allocator,track_slice,,calls,1205,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/driver.py(36): active,track_slice,,us,382.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/driver.py(36): active,track_slice,,calls,4916,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,us,1623.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(1109): __call__,track_slice,,calls,1200,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,us,553.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(364): __getitem__,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(370): ,track_slice,,us,7249.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(370): ,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,us,4879.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(574): compute_cache_key,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(708): run,track_slice,,us,31948.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,triton/runtime/jit.py(708): run,track_slice,,calls,2458,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1161): _is_dunder,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1161): _is_dunder,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1174): __init__,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1174): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1215): __setattr__,track_slice,,us,7.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1215): __setattr__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1269): __init__,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1269): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1273): ,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(1273): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(166): _type_convert,track_slice,,us,5.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(166): _type_convert,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(175): _type_check,track_slice,,us,11.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(175): _type_check,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(2187): cast,track_slice,,us,1840.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(2187): cast,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(2344): get_origin,track_slice,,us,29.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(2344): get_origin,track_slice,,calls,57,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(2374): get_args,track_slice,,us,20.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(2374): get_args,track_slice,,calls,56,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(317): _deduplicate,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(317): _deduplicate,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(345): _remove_dups_flatten,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(345): _remove_dups_flatten,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(392): inner,track_slice,,us,640.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(392): inner,track_slice,,calls,1032,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(494): __repr__,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(494): __repr__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(515): __getitem__,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(515): __getitem__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(694): Union,track_slice,,us,12.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(694): Union,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(730): ,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(730): ,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(747): Optional,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(747): Optional,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(892): __init__,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(892): __init__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(962): __eq__,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(962): __eq__,track_slice,,calls,17,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(971): __hash__,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing.py(971): __hash__,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing_extensions.py(3143): _has_generic_or_protocol_as_origin,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing_extensions.py(3165): _is_unpacked_typevartuple,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,typing_extensions.py(3228): _collect_parameters,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,us,846.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(1021): _rocm_aiter_per_tensor_quant_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,us,1267.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(142): wrapper,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,us,69.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(1636): is_linear_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,us,99.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(1758): is_triton_gemm_enabled,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,us,641.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(1763): is_tgemm_enabled,track_slice,,calls,1027,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,us,1635.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_aiter_ops.py(91): is_aiter_found_and_supported,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,us,444.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_custom_ops.py(208): paged_attention_rocm,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,us,2.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_custom_ops.py(2187): wvSplitK,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,us,291.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_custom_ops.py(2565): reshape_and_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,us,526.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/_custom_ops.py(2932): qr_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,us,101.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/caching.py(216): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,us,199.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/compiler_interface.py(436): compiled_graph_wrapper,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,us,412.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/cuda_graph.py(211): __getattr__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,us,6278.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/cuda_graph.py(233): __call__,track_slice,,calls,1434,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,us,59.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/decorators.py(502): __call__,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,us,34.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/decorators.py(724): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,us,8.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/decorators.py(774): maybe_use_cudagraph_partition_wrapper,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,us,764.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/piecewise_backend.py(343): _find_range_for_shape,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,us,735.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/compilation/piecewise_backend.py(358): __call__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,us,838.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(71): has_mode,track_slice,,calls,1034,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,us,14.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(77): requires_piecewise_compilation,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,us,8.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(86): has_piecewise_cudagraphs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,us,927.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(89): separate_routine,track_slice,,calls,3092,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,us,2338.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(92): valid_runtime_modes,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,us,625.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/compilation.py(96): is_valid_runtime_mode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,us,137.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/parallel.py(518): num_ubatches,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/utils.py(363): __contains__,track_slice,,us,426.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/utils.py(363): __contains__,track_slice,,calls,810,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/utils.py(372): __hash__,track_slice,,us,86.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/config/utils.py(372): __hash__,track_slice,,calls,405,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,us,532.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/communication_op.py(17): tensor_model_parallel_all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,us,924.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/all_reduce_utils.py(100): should_nccl_symm_mem_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,us,1007.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/cuda_communicator.py(283): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,us,1016.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/cuda_communicator.py(351): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,us,278.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/pynccl_allocator.py(48): is_symmetric_memory_enabled,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,us,1315.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(289): should_quick_allreduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,us,584.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(314): quick_all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,us,233.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/quick_all_reduce.py(325): _get_qr_quant_level,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,us,394.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(173): record_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,us,610757.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(183): wait,track_slice,,calls,2700754,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,1422.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,554.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,2393.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,368.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,us,877.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(621): __init__,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,us,99667.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(634): timeout_ms,track_slice,,calls,2700754,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,us,84669.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(654): should_warn,track_slice,,calls,2700754,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,us,2336835.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(664): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,us,414384.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(677): check,track_slice,,calls,2702815,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,393347.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,2704876,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,us,5233.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(713): acquire_read,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,us,8999.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/device_communicators/shm_broadcast.py(772): dequeue,track_slice,,calls,2061,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,us,113.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/ec_transfer/ec_transfer_state.py(22): has_ec_transfer,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,us,232.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/kv_transfer/kv_transfer_state.py(26): has_kv_transfer_group,track_slice,,calls,2462,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,us,532.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(130): all_reduce,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,us,72.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(1337): get_tp_group,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,us,429.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(1353): get_pp_group,track_slice,,calls,5147,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,us,825.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(160): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,us,180.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(529): first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,us,338.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(534): last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,us,454.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(539): is_first_rank,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,us,450.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(544): is_last_rank,track_slice,,calls,2060,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,us,216.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(634): _all_reduce_out_place,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,us,2492.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(639): all_gather,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,us,448.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/parallel_state.py(655): _all_gather_out_place,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,us,215110.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/utils.py(46): sched_yield,track_slice,,calls,2700749,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,us,101.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/distributed/utils.py(67): is_weak_contiguous,track_slice,,calls,805,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,us,324.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(182): __post_init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,us,112.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(191): get_forward_context,track_slice,,calls,2239,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,us,106.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(200): is_forward_context_available,track_slice,,calls,1439,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,us,2071.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(204): create_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,us,207.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(234): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,us,180.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(244): override_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,us,3786.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(249): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,us,688.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/forward_context.py(323): set_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,us,933.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/kernels/aiter_ops.py(107): _rocm_aiter_rmsnorm2d_fwd_with_add_impl,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,us,81.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/kernels/aiter_ops.py(59): _rms_norm_impl,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,us,862.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/kernels/linear/scaled_mm/rocm.py(19): rocm_per_tensor_float_w8a8_scaled_mm_impl,track_slice,,calls,1600,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,us,946.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/attention/attention.py(648): get_attention_context,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,us,854.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/attention/attention.py(691): unified_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,us,442.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/attention/attention.py(733): unified_attention_with_output,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,us,246.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/attention/kv_transfer_utils.py(37): wrapper,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,us,1061.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/logits_processor.py(54): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,us,580.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/logits_processor.py(75): _gather_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,us,4513.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/logits_processor.py(89): _get_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,us,1371.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/utils.py(101): use_aiter_triton_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,us,12814.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/utils.py(122): rocm_unquantized_gemm_impl,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,us,1447.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/utils.py(203): rocm_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,us,461.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/utils.py(321): dispatch_unquantized_gemm,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,us,2206.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/layers/vocab_parallel_embedding.py(67): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,us,3116.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/models/llama.py(392): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,us,23.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/models/llama.py(550): forward,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,us,2360.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/models/llama.py(562): compute_logits,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,us,75.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/offloader/base.py(111): get_offloader,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,us,36.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/model_executor/offloader/base.py(79): sync_prev_onload,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,us,71.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/interface.py(1020): set_additional_forward_context,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,us,717.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/interface.py(163): is_rocm,track_slice,,calls,4512,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,us,87.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(296): on_mi3xx,track_slice,,calls,3083,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,us,47.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(300): on_gfx9,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,us,104.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(312): on_gfx950,track_slice,,calls,2056,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,us,293.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(840): is_fp8_fnuz,track_slice,,calls,3429,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,us,486.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/platforms/rocm.py(845): fp8_dtype,track_slice,,calls,2400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,us,58.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(126): stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(263): _start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,us,4.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(265): _stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,us,67.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(289): _profiler_step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,us,572.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(305): annotate_context_manager,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(57): _call_start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,us,1.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(62): _call_stop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(81): start,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,us,758.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/profiler/wrapper.py(83): step,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(35): validate_thinking_token_budget,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,us,150.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(429): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,us,510.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(487): _verify_args,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(579): ,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(579): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(584): ,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(584): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(592): ,track_slice,,us,4.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(592): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,us,9.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(673): sampling_type,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/sampling_params.py(689): bad_words_token_ids,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,us,16.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/__init__.py(15): length_from_prompt_token_ids_or_embeds,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,us,20.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/system_utils.py(215): write_with_prefix,track_slice,,calls,7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,us,1145.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/torch_utils.py(674): _patched_set_stream,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,us,91.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/torch_utils.py(76): is_quantized_kv_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,us,761.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/torch_utils.py(879): __init__,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,us,119.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/utils/torch_utils.py(907): _resolve_layer_name,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,us,2772.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/backends/rocm_attn.py(114): build,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,us,4082.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/backends/rocm_attn.py(360): forward,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,us,1012.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/backends/rocm_attn.py(460): do_kv_cache_update,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,us,1086.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(24): has_native_kv_cache_layout,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,us,4771.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/chunked_prefill_paged_decode.py(266): chunked_prefill_paged_decode,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,us,2029.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/paged_attn.py(16): split_kv_cache,track_slice,,calls,800,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,us,221.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/paged_attn.py(31): write_to_paged_cache,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,us,13996.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/prefix_prefill.py(647): context_attention_fwd,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,us,211.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/attention/ops/prefix_prefill.py(819): ,track_slice,,calls,400,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,us,2995.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/core/sched/output.py(153): _req_id_to_num_output_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,us,7166.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/core/sched/output.py(163): is_context_phase,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,us,2448.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/cudagraph_dispatcher.py(132): _create_padded_batch_descriptor,track_slice,,calls,1024,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,us,5942.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/cudagraph_dispatcher.py(235): dispatch,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/executor/multiproc_executor.py(790): death_pipe_monitor,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/executor/multiproc_executor.py(881): worker_main,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/executor/multiproc_executor.py(943): handle_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,us,7684.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/executor/multiproc_executor.py(984): worker_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,us,129.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(101): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,us,403.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(135): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,us,2.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(137): ,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,us,41.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(161): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(191): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,us,569.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(200): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,us,83.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(234): apply,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,us,123.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(294): process_dict_updates,track_slice,,calls,2062,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,us,88.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/builtin.py(53): update_state,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,us,21.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(102): pop_removed,track_slice,,calls,95,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,us,436.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(119): get_and_reset,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,us,341.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(162): all,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,us,354.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(59): _ensure_removed_sorted,track_slice,,calls,1095,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,us,296.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(69): removed,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,us,23.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(76): removed_append,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,us,11.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(92): has_removed,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,us,9.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/logits_processor/state.py(95): peek_removed,track_slice,,calls,33,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,us,2457.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(222): forward_hip,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,us,3901.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(247): aiter_sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,us,275.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/ops/topk_topp_sampler.py(511): _to_tensor_scalar_tuple,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,us,984.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(227): apply_temperature,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,us,3169.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(243): sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,us,2377.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(371): apply_logits_processors,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,us,58.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(422): apply_penalties,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,us,5982.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/sample/sampler.py(72): forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,us,10307.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/utils.py(138): copy_to_gpu,track_slice,,calls,6179,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,us,147.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/utils.py(617): copy_slice,track_slice,,calls,18,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,us,2978.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/utils.py(721): record_function_or_nullcontext,track_slice,,calls,9263,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,us,14404.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/utils.py(767): compute_iteration_details,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,us,3513.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(102): append_row,track_slice,,calls,4162,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,us,15.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(120): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,us,53.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(124): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,us,21.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(130): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,us,3097.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(141): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,us,432.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(166): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,us,733.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(203): get_device_tensor,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,us,1294.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(283): append_row,track_slice,,calls,4098,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,us,22.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(287): add_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,us,14.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(291): clear_row,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(295): move_row,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,us,516.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(303): compute_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,us,388.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(312): commit_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,us,171.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/block_table.py(320): __getitem__,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(137): _parse_late_interaction_meta,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,us,31.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(32): register_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,us,90.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu/pool/late_interaction_runner.py(41): on_requests_finished,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,us,203.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1001): set_async_sampled_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,us,119.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1018): update_async_output_token_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,us,663.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1085): num_reqs,track_slice,,calls,5223,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1089): all_greedy,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1093): all_random,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1097): no_top_p,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,us,3.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1101): no_top_k,track_slice,,calls,20,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,us,16.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1105): no_penalties,track_slice,,calls,40,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1120): max_num_logprobs,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(1124): no_allowed_token_ids,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,us,16042.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(303): req_ids,track_slice,,calls,71645,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,us,50.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(309): _register_add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,us,9496.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(335): add_request,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,us,22796.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(483): update_req_spec_token_ids,track_slice,,calls,65539,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,us,374.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(510): remove_request,track_slice,,calls,128,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,us,21.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(66): __post_init__,track_slice,,calls,64,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(678): _get_active_token_count,track_slice,,calls,31,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,us,737.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(683): condense,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,us,6458.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(74): num_tokens,track_slice,,calls,65603,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,us,2464.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(811): refresh_metadata,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,us,226.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_input_batch.py(831): _make_sampling_metadata,track_slice,,calls,10,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,us,1397.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1022): _init_model_kwargs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,us,287.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1063): _may_reorder_batch,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,us,87.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1118): _get_or_create_async_output_copy_stream,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,us,270029.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1125): _update_states,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,us,114.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1495): _update_states_after_model_execute,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,us,5889.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1659): _get_cumsum_and_arange,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,us,11106.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1685): _compute_prev_positions,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,us,177126.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1700): _prepare_input_ids,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,us,179.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1827): _get_encoder_seq_lens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,us,116728.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(1872): _prepare_inputs,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,us,23323.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(2191): _build_attention_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,us,2021.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(2232): _get_block_table,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,us,6503.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(2362): _build_attn_group_metadata,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,us,4778.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(240): __init__,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,us,217.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3294): eplb_step,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,us,495.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3390): _pad_for_sequence_parallelism,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,us,3584.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3409): _preprocess,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,us,2150.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3526): _sample,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,us,152064.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3557): _bookkeeping_sync,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,us,438.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3698): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,us,368.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3709): synchronize_input_prep,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,us,1157.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3713): _model_forward,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,us,182.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3745): _is_uniform_decode,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,us,3319.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3766): _determine_batch_execution_and_padding,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,us,810.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3811): dispatch_cudagraph,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,us,5511.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3916): _get_slot_mappings,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,us,2796.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3947): _get_slot_mapping,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,us,65477.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(3999): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,us,2144.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(4144): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,us,521.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(4145): ,track_slice,,calls,2058,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,us,447.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(4146): ,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,us,30659.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(4378): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,us,162.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_model_runner.py(5397): _get_prompt_logprobs_dict,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,us,2547.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(773): annotate_profile,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,us,523.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(799): sample_tokens,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,us,7316.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(805): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,us,9.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(899): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/gpu_worker.py(945): profile,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,us,701.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/kv_connector_model_runner_mixin.py(50): maybe_get_kv_connector_output,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,us,52.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/ubatch_utils.py(63): maybe_create_ubatch_slices,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,us,264.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/utils.py(257): get_metadata_builder,track_slice,,calls,1029,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,us,170.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/worker_base.py(327): __getattr__,track_slice,,calls,1030,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,us,94.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/worker_base.py(330): _apply_mm_cache,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,us,773.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,vllm/v1/worker/worker_base.py(340): execute_model,track_slice,,calls,1031,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,zmq/sugar/poll.py(80): poll,track_slice,,us,7688280.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,python_function,zmq/sugar/poll.py(80): poll,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,23383936.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,0.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(120): update,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(17): __init__,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(21): __enter__,track_slice,,us,7.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(27): __exit__,track_slice,,us,13.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(37): __init__,track_slice,,us,16.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,10.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(63): __iter__,track_slice,,us,34.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(95): copy,track_slice,,us,7.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(299): __enter__,track_slice,,us,3.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(302): __exit__,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(308): _release_save,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(311): _acquire_restore,track_slice,,us,38.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(314): _is_owned,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(323): wait,track_slice,,us,29.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(359): wait,track_slice,,us,9919759.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(601): is_set,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(637): wait,track_slice,,us,12.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(655): wait,track_slice,,us,3.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,15.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/_monitor.py(69): run,track_slice,,us,49.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(100): acquire,track_slice,,us,15.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(104): release,track_slice,,us,8.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(108): __enter__,track_slice,,us,4.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(111): __exit__,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(759): get_lock,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,24.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,4.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,1.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,14.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,2.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,0.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,1.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,0.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,33303216.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,0.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,(117): __instancecheck__,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,(117): __instancecheck__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,contextlib.py(104): __init__,track_slice,,us,8.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,contextlib.py(104): __init__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,contextlib.py(132): __enter__,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,contextlib.py(132): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,contextlib.py(141): __exit__,track_slice,,us,2.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,contextlib.py(141): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,contextlib.py(299): helper,track_slice,,us,5.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,contextlib.py(299): helper,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,enum.py(1269): __reduce_ex__,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,enum.py(1269): __reduce_ex__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,multiprocessing/shared_memory.py(204): buf,track_slice,,calls,4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,queue.py(154): get,track_slice,,us,3.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,queue.py(154): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,queue.py(171): get,track_slice,,us,19.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,queue.py(171): get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,queue.py(209): _qsize,track_slice,,us,8.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,queue.py(209): _qsize,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,queue.py(217): _get,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,queue.py(217): _get,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(1012): run,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(1012): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(1032): _bootstrap,track_slice,,us,0.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,0.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(299): __enter__,track_slice,,us,0.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(299): __enter__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(302): __exit__,track_slice,,us,2.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(302): __exit__,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(308): _release_save,track_slice,,us,0.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(308): _release_save,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(311): _acquire_restore,track_slice,,us,43.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(311): _acquire_restore,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(314): _is_owned,track_slice,,us,1.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(314): _is_owned,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(323): wait,track_slice,,us,11.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(323): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(355): wait,track_slice,,us,401.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(355): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(394): notify,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,threading.py(394): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,us,9.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(210): notify,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,us,2.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(337): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,us,2.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(343): get_data,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,us,6.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(345): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(351): get_metadata,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,us,11.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(548): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,us,4.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(556): check,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,us,6.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(595): acquire_write,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,us,3.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(70): memory_fence,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,us,46.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(727): enqueue,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,us,4.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/distributed/device_communicators/shm_broadcast.py(91): to_bytes_big,track_slice,,calls,2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,us,14.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/v1/executor/multiproc_executor.py(928): enqueue_output,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,us,8.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,vllm/v1/executor/multiproc_executor.py(968): async_output_busy_loop,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,zmq/sugar/socket.py(623): send,track_slice,,us,104.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,python_function,zmq/sugar/socket.py(623): send,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,5.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,8.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,4.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,1.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,3.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,5.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,23484089.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,5.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,1.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,10.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,1.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,0.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,us,4.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(120): update,track_slice,,us,20.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(120): update,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(17): __init__,track_slice,,us,5.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(17): __init__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(21): __enter__,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(21): __enter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(27): __exit__,track_slice,,us,24.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(27): __exit__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(37): __init__,track_slice,,us,27.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(37): __init__,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(53): _commit_removals,track_slice,,us,27.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(53): _commit_removals,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(63): __iter__,track_slice,,us,48.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(63): __iter__,track_slice,,calls,12,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(95): copy,track_slice,,us,17.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,_weakrefset.py(95): copy,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(1032): _bootstrap,track_slice,,us,1.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(1032): _bootstrap,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(1075): _bootstrap_inner,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(1075): _bootstrap_inner,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(299): __enter__,track_slice,,us,3.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(299): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(302): __exit__,track_slice,,us,8.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(302): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(308): _release_save,track_slice,,us,2.0,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(308): _release_save,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(311): _acquire_restore,track_slice,,us,77.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(311): _acquire_restore,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(314): _is_owned,track_slice,,us,2.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(314): _is_owned,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(323): wait,track_slice,,us,63.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(323): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(359): wait,track_slice,,us,9819351.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(359): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(601): is_set,track_slice,,us,1.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(601): is_set,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(637): wait,track_slice,,us,27.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(637): wait,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(655): wait,track_slice,,us,11.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,threading.py(655): wait,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,us,25.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/_monitor.py(56): get_instances,track_slice,,calls,6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/_monitor.py(69): run,track_slice,,us,86.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/_monitor.py(69): run,track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(100): acquire,track_slice,,us,37.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(100): acquire,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(104): release,track_slice,,us,18.4,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(104): release,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(108): __enter__,track_slice,,us,9.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(108): __enter__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(111): __exit__,track_slice,,us,6.3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(111): __exit__,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(759): get_lock,track_slice,,us,7.6,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,python_function,tqdm/std.py(759): get_lock,track_slice,,calls,3,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,119848,119858,Trace,PyTorch Profiler (0),track_slice,,us,33304133.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,119848,119858,Trace,PyTorch Profiler (0),track_slice,,calls,1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,119848,119858,,PyTorch Profiler,track,,us,33304133.9,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,805,,thread 805 (VLLM::Worker_TP),track,,us,33304034.2,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1474,,thread 1474 (VLLM::Worker_TP),track,,us,33304076.1,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1434,,thread 1434 (VLLM::Worker_TP),track,,us,33304027.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,805,1394,,thread 1394 (VLLM::Worker_TP),track,,us,33304024.5,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,9,,stream 9 ,track,,us,32764946.8,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, +7,9,4,,stream 4 ,track,,us,33137106.7,parse_trace,./data/decode64-exp-profile-traces-warm/profile/traces/rank7.1782867468255630353.pt.trace.json.gz,decode64-exp-profile-traces-warm,exp,profile,, diff --git a/benchmark/llama70b/eval.sh b/benchmark/llama70b/eval.sh new file mode 100755 index 000000000..3a15982e6 --- /dev/null +++ b/benchmark/llama70b/eval.sh @@ -0,0 +1,80 @@ +#!/bin/bash +# eval.sh - e2e correctness GATE for the llama70b arm: gsm8k accuracy via lm_eval +# (5-shot, 200 samples) against the live server. The companion to bench.sh: bench.sh +# measures speed (--ignore-eos, perf-only), eval.sh proves the arm produces RIGHT +# answers (natural EOS, no forced lengths). Separate scripts, never a mode flag on the +# perf run. +# +# The server lifecycle + flags come from _serve.sh, IDENTICAL to bench.sh's - that is +# the point: the gate must certify the SAME server config the perf run measured. +# lm_eval sends its own completion requests with natural stop criteria (never +# --ignore-eos), so the answers are real. The gate is met when BOTH arms (baseline +# image + exp image) pass and match; run this for each image and compare the scores. +# +# The arm is whatever the image baked (Dockerfile.baseline | .exp). +# +# Usage: +# ./eval.sh # gsm8k 5-shot, 200 samples, on the baked arm +# LIMIT=500 ./eval.sh # more samples +# FEWSHOT=8 ./eval.sh # more shots + +set -euo pipefail + +SCRIPT_DIR="$(dirname "$(realpath "${BASH_SOURCE[0]}")")" +COMMAND=eval # output lands under output/-eval/ (not used by the report) +source "$SCRIPT_DIR/_serve.sh" # server lifecycle + output dirs, shared with bench.sh + +LIMIT="${LIMIT:-200}" +FEWSHOT="${FEWSHOT:-5}" + +run_eval() { + local arm="$1" + echo "" + echo "==========================================" + echo "[eval] lm_eval gsm8k (${FEWSHOT}-shot, ${LIMIT} samples) arm=$arm" + echo "==========================================" + lm_eval \ + --model local-completions \ + --model_args "model=${MODEL},base_url=http://${HOST}:${PORT}/v1/completions,tensor_parallel_size=${TP},add_bos_token=true,trust_remote_code=true" \ + --batch_size auto \ + --tasks gsm8k \ + --num_fewshot "$FEWSHOT" \ + --limit "$LIMIT" \ + --output_path "$RESULTS_DIR" || { echo "ERROR: lm_eval failed for $arm"; return 1; } +} + +dump_arm +prefetch_model +# gsm8k must be cached before HF goes offline (lm_eval loads it at eval time). +echo "[eval] pre-caching gsm8k dataset" +python3 -c "from datasets import load_dataset; load_dataset('openai/gsm8k', 'main')" \ + || echo "[eval] WARNING: gsm8k pre-cache failed - eval will fail offline" +export HF_HUB_OFFLINE=1 TRANSFORMERS_OFFLINE=1 + +mkdir -p "$RESULTS_DIR" +start_server +wait_ready +run_eval "$ARM" +stop_server + +# Echo the gsm8k score to STDOUT for an at-a-glance "did this arm pass". +echo "" +echo "[eval] done. results under: $RESULTS_DIR" +results_json="$(find "$RESULTS_DIR" -name 'results*.json' 2>/dev/null | sort | tail -1)" +if [[ -n "$results_json" ]]; then + python3 - "$results_json" "$ARM" <<'PY' +import json, sys +path, arm = sys.argv[1], sys.argv[2] +res = json.load(open(path)).get("results", {}).get("gsm8k", {}) +print(f"=== gsm8k correctness gate (arm={arm}) ===") +print(f"source: {path}") +for k, v in sorted(res.items()): + if isinstance(v, (int, float)) and not isinstance(v, bool): + print(f" {k}: {v:.4f}") +PY +else + # A wrapper must report the real outcome: no lm_eval results = the eval didn't + # complete (engine likely died). Fail the arm, don't pass silently. + echo "[eval] FATAL: no lm_eval results JSON under $RESULTS_DIR - eval did not complete (check the log for EngineDeadError)." >&2 + exit 1 +fi diff --git a/benchmark/llama70b/preprocess.py b/benchmark/llama70b/preprocess.py new file mode 100644 index 000000000..57087e629 --- /dev/null +++ b/benchmark/llama70b/preprocess.py @@ -0,0 +1,682 @@ +"""Extract raw run output into flat typed rows, using only the stdlib and perfetto. +Each `parse_` reads one source into its typed `Raw` essential facts; +`to_row` collapses those into the long-format `Row`s written to data.csv. Every view +(busy/idle, category totals, comms, compositions, A/B deltas) is derived from these +rows downstream, never stored. Run as a script over a bundle's data/ to build data.csv +(`python preprocess.py`, printing progress); the report notebook then just reads it.""" + +from __future__ import annotations + +import dataclasses +import json +import os +from dataclasses import dataclass +from typing import Any, Callable, Dict, List, Literal, Optional, Tuple, Union + +# The reduction a row reports over a distribution. None (the common case) means the row +# is a direct measured value — a throughput, a count, a de-nested self-time, a track +# window — not a statistic. median == p50, so we keep `median`. +Statistic = Literal["mean", "median", "p99", "std"] +# The closed set of units a value can carry. A count says what it counts (tokens / +# requests / calls); a rate is a count over a second. The count/duration/rate split is a +# grouping of these (below) — kept in code, not a column (the unit determines it). +Unit = Literal["us", "ms", "s", "tokens", "requests", "calls", "tokens_per_s", "requests_per_s"] +DURATION_UNITS = frozenset({"us", "ms", "s"}) +COUNT_UNITS = frozenset({"tokens", "requests", "calls"}) +RATE_UNITS = frozenset({"tokens_per_s", "requests_per_s"}) + +# The grain of a row: what one row represents, named after the GROUP BY that produced it +# (dbt's term for a fact table's level of detail). Orthogonal to `statistic`: that reduces +# the value distribution (mean/p99), grain reduces the dimensions. "run" = a whole vLLM +# run; "kernel" = one profiler kernel; "track" = one (pid,tid) trace track (its window); +# "track_slice" = one (track, category, name) group (its self time + count); "track_pair" = +# one pair of tracks (their concurrent-busy overlap, the second track in pid2/tid2). +Grain = Literal["run", "kernel", "track", "track_slice", "track_pair"] + + +@dataclass(frozen=True) +class Row: + """One essential fact for data.csv. `arm`/`container`/`command` are the caller-supplied + arm dimensions stamped on every row (the run arm, its A/B variant, its group); + `rank`/`pid`/`tid`/`cat`/`name` locate the entity (pid/tid = the track, cat = chrome + category, name = op/kernel/metric/track); `grain` says what one row represents (its + GROUP BY level), telling e.g. a track window apart from a slice self-time; `statistic` + is the distribution reduction (mean/median/p99/std) or None for a direct value; `unit` + the dimension. The notebook derives every view from these; none are stored.""" + + # per-file: what the helpers build from + rank: Optional[int] + pid: Optional[int] + tid: Optional[int] + cat: Optional[str] + name: str + grain: Grain + statistic: Optional[Statistic] + unit: Unit + value: Union[int, float, str] + preprocessor: str + source_file: str + # the per-arm identity, stamped on every row by to_row (constant across the arm) + arm: str = "" + container: Optional[str] = None # arm dimension: the A/B variant (baseline/exp/...) + command: Optional[str] = None # arm dimension: the group (bench/profile) + # the SECOND track of a grain="track_pair" row (its overlap partner); None otherwise + pid2: Optional[int] = None + tid2: Optional[int] = None + + def to_dict(self) -> Dict[str, Any]: + return dataclasses.asdict(self) + + +# --- vLLM ---------------------------------------------------------------------------- + + +@dataclass(frozen=True) +class VllmLatency: + """The distribution stats vLLM reports for one latency metric (ms). None = absent.""" + + mean: Optional[float] + median: Optional[float] + p99: Optional[float] + std: Optional[float] + + +@dataclass(frozen=True) +class VllmRaw: + """The essential vLLM --save-result facts (a typed mirror of the modeled fields). + parse_vllm is the loss boundary: a JSON field not named here is dropped at parse.""" + + output_throughput: Optional[float] + total_token_throughput: Optional[float] + request_throughput: Optional[float] + ttft: VllmLatency # time to first token + tpot: VllmLatency # time per output token + num_prompts: Optional[int] + completed: Optional[int] + duration: Optional[float] + total_output_tokens: Optional[int] + + +def parse_vllm(text: str) -> VllmRaw: + """Read the modeled fields out of the --save-result JSON (the loss boundary).""" + d = json.loads(text) + + def num(key: str) -> Optional[float]: + v = d.get(key) + return float(v) if v is not None else None + + def count(key: str) -> Optional[int]: + v = d.get(key) + return int(v) if v is not None else None + + def latency(metric: str) -> VllmLatency: + return VllmLatency( + num(f"mean_{metric}_ms"), num(f"median_{metric}_ms"), num(f"p99_{metric}_ms"), num(f"std_{metric}_ms") + ) + + return VllmRaw( + output_throughput=num("output_throughput"), + total_token_throughput=num("total_token_throughput"), + request_throughput=num("request_throughput"), + ttft=latency("ttft"), + tpot=latency("tpot"), + num_prompts=count("num_prompts"), + completed=count("completed"), + duration=num("duration"), + total_output_tokens=count("total_output_tokens"), + ) + + +def _vllm_rows(parsed: VllmRaw, rank: Optional[int], source_file: str) -> List[Row]: + """The e2e metrics — aggregate over the run, so no rank/track/category. Throughputs, + token/prompt counts and duration are direct values (statistic None); the latencies are + durations read out as mean/median/p99/std. (arm/container/command stamped by to_row.)""" + rows: List[Row] = [] + + def add(value: Optional[Union[int, float]], name: str, statistic: Optional[Statistic], unit: Unit) -> None: + if value is not None: + rows.append(Row(None, None, None, None, name, "run", statistic, unit, value, "parse_vllm", source_file)) + + def add_latency(name: str, lat: VllmLatency) -> None: + add(lat.mean, name, "mean", "ms") + add(lat.median, name, "median", "ms") + add(lat.p99, name, "p99", "ms") + add(lat.std, name, "std", "ms") + + add(parsed.output_throughput, "output_throughput", None, "tokens_per_s") + add(parsed.total_token_throughput, "total_throughput", None, "tokens_per_s") + add(parsed.request_throughput, "request_throughput", None, "requests_per_s") + add_latency("ttft", parsed.ttft) + add_latency("tpot", parsed.tpot) + add(parsed.num_prompts, "num_prompts", None, "requests") + add(parsed.completed, "completed", None, "requests") + add(parsed.duration, "duration", None, "s") + add(parsed.total_output_tokens, "output_tokens", None, "tokens") + return rows + + +# --- torch profiler key_averages table ----------------------------------------------- + + +@dataclass(frozen=True) +class ProfileKernel: + """One kernel row of the torch key_averages table — the columns we model (us).""" + + name: str + calls: int + cuda_time_avg_us: float + self_cuda_us: float + + +@dataclass(frozen=True) +class ProfileRaw: + """The essential kernels of a torch profiler key_averages table — a per-rank, per-name + aggregate (the cheap fallback when full traces aren't kept). parse_profile is the loss + boundary: unmodeled columns (Self CPU, CPU total, ...) are dropped at parse.""" + + kernels: List[ProfileKernel] + + +def parse_profile(text: str) -> ProfileRaw: + """Read each kernel's Name / # of Calls / CUDA time avg / Self CUDA out of the + key_averages table (the loss boundary). Empty if the table can't be located.""" + lines = text.splitlines() + dash_idxs = [i for i, ln in enumerate(lines) if _is_dash_row(ln)] + if len(dash_idxs) < 2: + return ProfileRaw([]) + top, mid = dash_idxs[0], dash_idxs[1] + bottom = dash_idxs[2] if len(dash_idxs) >= 3 else len(lines) + spans = _column_spans(lines[top]) + header_line = lines[mid - 1] if mid - 1 > top else lines[top + 1] + col = {name: i for i, name in enumerate(_table_cells(header_line, spans))} + i_name = col.get("Name", -1) + i_self = col.get("Self CUDA", -1) + i_avg = col.get("CUDA time avg", -1) + i_calls = col.get("# of Calls", -1) + kernels: List[ProfileKernel] = [] + if min(i_name, i_self, i_avg, i_calls) >= 0: + for ln in lines[mid + 1 : bottom]: + if not ln.strip() or _is_dash_row(ln): + continue + cells = _table_cells(ln, spans) + if len(cells) <= max(i_name, i_self, i_avg, i_calls): + continue + name = cells[i_name] + if not name: + continue + kernels.append( + ProfileKernel( + name, _table_to_count(cells[i_calls]), _table_to_us(cells[i_avg]), _table_to_us(cells[i_self]) + ) + ) + return ProfileRaw(kernels) + + +def _profile_rows(parsed: ProfileRaw, rank: Optional[int], source_file: str) -> List[Row]: + """Per kernel (rank-level, no track): call count, the mean per-call duration, and the + exclusive self time (statistic None — it's a direct value). cat is None: the profiler + table doesn't carry chrome categories. (arm/container/command stamped by to_row.)""" + rows: List[Row] = [] + for k in parsed.kernels: + rows.append(Row(rank, None, None, None, k.name, "kernel", None, "calls", k.calls, "parse_profile", source_file)) + rows.append( + Row( + rank, None, None, None, k.name, "kernel", "mean", "us", k.cuda_time_avg_us, "parse_profile", source_file + ) + ) + rows.append( + Row(rank, None, None, None, k.name, "kernel", None, "us", k.self_cuda_us, "parse_profile", source_file) + ) + return rows + + +# --- perfetto trace ------------------------------------------------------------------- + +# Per (track, category, slice-name): exclusive self time (dur minus direct children via +# parent_id, so it's de-nested and non-overlapping) + count. This is the essential trace +# fact — busy/idle, category totals, comms and compositions all derive from it. +SLICE_FACTS_SQL = ( + "SELECT p.pid AS pid, t.tid AS tid, t.name AS tname, s.category AS cat, s.name AS name, " + "COUNT(*) AS calls, " + "SUM(s.dur - COALESCE(ch.child_dur, 0)) / 1000.0 AS self_us " + "FROM slice s " + "JOIN thread_track tt ON s.track_id = tt.id " + "JOIN thread t ON tt.utid = t.utid " + "LEFT JOIN process p ON t.upid = p.upid " + "LEFT JOIN (SELECT parent_id, SUM(dur) AS child_dur FROM slice " + " WHERE dur > 0 AND parent_id IS NOT NULL GROUP BY parent_id) ch " + " ON ch.parent_id = s.id " + "WHERE s.dur >= 0 " + "GROUP BY p.pid, t.tid, s.category, s.name" +) + +# Per (pid, tid) track: its wall span (first slice to last). idle = window - busy, both +# derived in the notebook (busy = the track's summed self time). +TRACK_WINDOW_SQL = ( + "SELECT p.pid AS pid, t.tid AS tid, t.name AS tname, " + "(MAX(s.ts + s.dur) - MIN(s.ts)) / 1000.0 AS window_us " + "FROM slice s " + "JOIN thread_track tt ON s.track_id = tt.id " + "JOIN thread t ON tt.utid = t.utid " + "LEFT JOIN process p ON t.upid = p.upid " + "WHERE s.dur >= 0 " + "GROUP BY t.utid" +) + +# Each GPU kernel slice's track + raw [ts, ts+dur) interval (nanoseconds), for the +# cross-track CONCURRENCY sweep. Concurrency is a track property (within a track slices are +# serial), so ALL cross-track interaction is captured EXACTLY by pairwise TRACK overlap: +# sweeping these intervals sums, for each pair of tracks, the wall both were busy. Because +# a track's slices never overlap each other, track overlap == the sum of slice-pairwise +# overlaps (we keep the exact duration, drop only per-slice identity). Name/role-agnostic: +# preprocess makes no comms/compute distinction - it emits the track-pair overlaps, and the +# notebook runs whatever overlap query it wants over them. +KERNEL_INTERVALS_SQL = ( + "SELECT p.pid AS pid, t.tid AS tid, s.ts AS ts, s.dur AS dur " + "FROM slice s " + "JOIN thread_track tt ON s.track_id = tt.id " + "JOIN thread t ON tt.utid = t.utid " + "LEFT JOIN process p ON t.upid = p.upid " + "WHERE s.category = 'kernel' AND s.dur > 0" +) + + +@dataclass(frozen=True) +class TraceSlice: + """One (track, category, name) group's de-nested self time + count.""" + + pid: int + tid: int + tname: str + cat: str + name: str + calls: int + self_us: float + + +@dataclass(frozen=True) +class TraceTrack: + """One (pid, tid) track's wall span (first slice to last).""" + + pid: int + tid: int + tname: str + window_us: float + + +@dataclass(frozen=True) +class TracePair: + """The exact wall two (pid, tid) tracks were busy CONCURRENTLY (canonical order, + track a < track b) - the concurrency fact. Within a track slices are serial, so all + cross-track overlap lives here; the notebook runs arbitrary overlap queries over it.""" + + pid_a: int + tid_a: int + pid_b: int + tid_b: int + overlap_us: float + + +@dataclass(frozen=True) +class TraceRaw: + """The essential trace facts: per-(track, category, name) self/count, per-track windows, + and pairwise track overlaps (concurrency). busy/idle, category totals, comms, + compositions and exposed/overlapped all DERIVE from these. Empty if perfetto is + unavailable or the trace won't load.""" + + slices: List[TraceSlice] + tracks: List[TraceTrack] + overlaps: List[TracePair] + + +_Track = Tuple[int, int] + + +def _track_pair_overlaps(intervals: List[Tuple[int, int, int, int]]) -> Dict[Tuple[_Track, _Track], int]: + """Sweep kernel (pid, tid, ts, dur) intervals (nanoseconds) across tracks and sum, for + each PAIR of tracks, the wall both were busy. Returns overlap ns keyed by + (track_a, track_b) in canonical order (a < b). Exact: within a track slices are serial, + so all cross-track interaction is captured by these pairwise overlaps.""" + events = [] # (time, delta, track) + for pid, tid, ts, dur in intervals: + track = (pid, tid) + events.append((ts, 1, track)) + events.append((ts + dur, -1, track)) + events.sort(key=lambda e: e[0]) + active: Dict[_Track, int] = {} + live: set[_Track] = set() + overlaps: Dict[Tuple[_Track, _Track], int] = {} + prev_t: Optional[int] = None + for t, delta, track in events: + if prev_t is not None and t > prev_t and len(live) >= 2: + seg = t - prev_t + ordered = sorted(live) + for i in range(len(ordered)): + for j in range(i + 1, len(ordered)): + key = (ordered[i], ordered[j]) + overlaps[key] = overlaps.get(key, 0) + seg + active[track] = active.get(track, 0) + delta + if active[track] > 0: + live.add(track) + else: + live.discard(track) + prev_t = t + return overlaps + + +def parse_trace(trace_path: str) -> TraceRaw: + """Perfetto read of one *.pt.trace.json.gz into the essential facts. Empty TraceRaw + if perfetto is unavailable or the trace won't load.""" + try: + from perfetto.trace_processor import TraceProcessor + except ImportError: + return TraceRaw([], [], []) + try: + tp = TraceProcessor(trace=str(trace_path)) + except Exception: + return TraceRaw([], [], []) + try: + slices: List[TraceSlice] = [] + for r in tp.query(SLICE_FACTS_SQL): + if r.tid is None or r.cat is None: + continue + pid = int(r.pid) if r.pid is not None else -1 + slices.append( + TraceSlice(pid, int(r.tid), r.tname or "", r.cat, r.name or "", int(r.calls), float(r.self_us)) + ) + kintervals: List[Tuple[int, int, int, int]] = [] + for r in tp.query(KERNEL_INTERVALS_SQL): + if r.tid is None: + continue + pid = int(r.pid) if r.pid is not None else -1 + kintervals.append((pid, int(r.tid), int(r.ts), int(r.dur))) + overlaps: List[TracePair] = [] + for (a, b), ns in _track_pair_overlaps(kintervals).items(): + overlaps.append(TracePair(a[0], a[1], b[0], b[1], ns / 1000.0)) + tracks: List[TraceTrack] = [] + for r in tp.query(TRACK_WINDOW_SQL): + if r.tid is None: + continue + pid = int(r.pid) if r.pid is not None else -1 + tracks.append(TraceTrack(pid, int(r.tid), r.tname or "", float(r.window_us or 0.0))) + except Exception: + return TraceRaw([], [], []) + finally: + tp.close() + return TraceRaw(slices, tracks, overlaps) + + +def _trace_rows(parsed: TraceRaw, rank: Optional[int], source_file: str) -> List[Row]: + """The essential facts: per (track, category, name) self time + count (grain + "track_slice"), each track's window (grain "track"), and each track-pair's concurrent + overlap (grain "track_pair", partner in pid2/tid2). All direct values (statistic None); + busy/idle, comms, composition and exposed/overlapped derive. `grain` keeps them apart. + (arm/container/command stamped by to_row.)""" + rows: List[Row] = [] + for s in parsed.slices: + rows.append( + Row( + rank, + s.pid, + s.tid, + s.cat, + s.name, + "track_slice", + None, + "us", + round(s.self_us, 1), + "parse_trace", + source_file, + ) + ) + rows.append( + Row(rank, s.pid, s.tid, s.cat, s.name, "track_slice", None, "calls", s.calls, "parse_trace", source_file) + ) + for t in parsed.tracks: + rows.append( + Row( + rank, + t.pid, + t.tid, + None, + t.tname, + "track", + None, + "us", + round(t.window_us, 1), + "parse_trace", + source_file, + ) + ) + for o in parsed.overlaps: + rows.append( + Row( + rank, + o.pid_a, + o.tid_a, + None, + "overlap", + "track_pair", + None, + "us", + round(o.overlap_us, 1), + "parse_trace", + source_file, + pid2=o.pid_b, + tid2=o.tid_b, + ) + ) + return rows + + +# --- project any parsed source into rows ---------------------------------------------- + +Parsed = Union[VllmRaw, ProfileRaw, TraceRaw] + + +def to_row( + parsed: Parsed, + arm: str, + rank: Optional[int], + source_file: str, + container: Optional[str] = None, + command: Optional[str] = None, +) -> List[Row]: + """Collapse a parsed source's essential facts into flat cache rows — the single entry + over the union of parse outputs. The helpers build each row from per-file context + (rank, source_file); to_row then STAMPS the per-arm identity (arm, container, command) + on all of them, so the three are applied uniformly in one place.""" + if isinstance(parsed, VllmRaw): + rows = _vllm_rows(parsed, rank, source_file) + elif isinstance(parsed, ProfileRaw): + rows = _profile_rows(parsed, rank, source_file) + elif isinstance(parsed, TraceRaw): + rows = _trace_rows(parsed, rank, source_file) + else: + raise TypeError("to_row: unhandled parsed type %r" % type(parsed).__name__) + return [dataclasses.replace(r, arm=arm, container=container, command=command) for r in rows] + + +# --- per-arm chaining ----------------------------------------------------------------- + + +def preprocess( + arm: str, + vllm_files: List[str], + profile_files: List[str], + trace_files: List[str], + container: Optional[str] = None, + command: Optional[str] = None, + progress: Optional[Callable[[str], None]] = None, +) -> List[Row]: + """Essential-fact rows for one arm from its source files. In-memory: reads exactly the + files handed in, chaining parse_X -> to_row per file. `container`/`command` are the + arm's declared dimensions (caller-supplied, like `arm`); to_row stamps all three on + every row. source_file is the path as handed in (the caller owns it), so a row traces + back to its file. `progress(path)` is called before each file (trace parsing is slow, so + the caller can report which file it's on).""" + + def note(f: str) -> None: + if progress is not None: + progress(f) + + rows: List[Row] = [] + for f in vllm_files: + note(f) + with open(f) as fh: + rows.extend(to_row(parse_vllm(fh.read()), arm, None, f, container, command)) + for f in profile_files: + note(f) + with open(f) as fh: + rows.extend(to_row(parse_profile(fh.read()), arm, _rank_of(f), f, container, command)) + for f in trace_files: + note(f) + rows.extend(to_row(parse_trace(f), arm, _rank_of(f), f, container, command)) + return rows + + +def _rank_of(path: str) -> Optional[int]: + """rankN from 'rank3.123.pt.trace.json.gz' or 'profiler_out_3.txt' -> 3; None if none.""" + import re + + base = os.path.basename(path) + m = re.search(r"rank(\d+)", base) or re.search(r"profiler_out_(\d+)", base) + return int(m.group(1)) if m else None + + +def _is_dash_row(line: str) -> bool: + s = line.strip() + return len(s) > 0 and set(s) <= {"-", " "} + + +def _column_spans(dash_line: str) -> List[Any]: + spans: List[Any] = [] + start = None + for i, ch in enumerate(dash_line): + if ch == "-": + if start is None: + start = i + elif start is not None: + spans.append((start, i)) + start = None + if start is not None: + spans.append((start, len(dash_line))) + return spans + + +def _table_cells(line: str, spans: List[Any]) -> List[str]: + out: List[str] = [] + for idx, (s, _e) in enumerate(spans): + end = len(line) if idx == len(spans) - 1 else spans[idx + 1][0] + out.append(line[s:end].strip()) + return out + + +def _table_to_us(token: str) -> float: + t = token.strip() + if not t: + return 0.0 + if t.endswith("us"): + return float(t[:-2]) + if t.endswith("ms"): + return float(t[:-2]) * 1_000.0 + if t.endswith("s"): + return float(t[:-1]) * 1_000_000.0 + return float(t) + + +def _table_to_count(token: str) -> int: + t = token.strip().replace(",", "") + return int(float(t)) if t else 0 + + +# --- run as a script: parse arm output dirs -> data.csv (the visible analysis step) ------ + + +def _arm_meta(arm_dir: str) -> Dict[str, Any]: + """container + command for an arm dir, from its arm.json (written by _serve.sh's + dump_arm). Absent -> (None, None): rows still parse, but the report's container/command + filters won't match, so a run that followed the instructions always has arm.json.""" + p = os.path.join(arm_dir, "arm.json") + if os.path.exists(p): + with open(p) as fh: + j = json.load(fh) + return {"container": j.get("container"), "command": j.get("command")} + return {"container": None, "command": None} + + +def main(arm_dirs: List[str], out: str = "data.csv") -> int: + """Parse each arm output dir into `out`, printing progress. This is THE analysis step - + the heavy one (perfetto reads the GB traces); the report notebook just reads the CSV. + Each dir is one arm (e.g. output/exp-profile/) holding arm.json + results/ + profile/, + as the run scripts produce it. With no dirs given, defaults to output/*. eval arms are + skipped (their results are gsm8k, not used by the report).""" + import csv + import glob + + if not arm_dirs: + arm_dirs = sorted(glob.glob(os.path.join("output", "*"))) + rows: List[Row] = [] + n_arms = 0 + for d in arm_dirs: + if not os.path.isdir(d): + continue + arm = os.path.basename(d.rstrip("/")) + meta = _arm_meta(d) + if meta["command"] == "eval": + print(f"[{arm}] skipped (eval arm; gsm8k results are not in the report)", flush=True) + continue + vllm = glob.glob(os.path.join(d, "results", "*.json")) + profile = glob.glob(os.path.join(d, "profile", "summary", "profiler_out_*.txt")) + trace = glob.glob(os.path.join(d, "profile", "traces", "*.pt.trace.json.gz")) + print( + f"[{arm}] container={meta['container']} command={meta['command']}: " + f"{len(vllm)} results, {len(profile)} profiler, {len(trace)} traces", + flush=True, + ) + rows.extend( + preprocess( + arm, + vllm, + profile, + trace, + container=meta["container"], + command=meta["command"], + progress=lambda f: print(" parsing " + os.path.basename(f), flush=True), + ) + ) + n_arms += 1 + if not rows: + print( + "preprocess: no rows produced (no arm dirs matched, or they were empty). " + "Pass the arm dirs, e.g. `python preprocess.py output/*`.", + flush=True, + ) + return 1 + fields = list(rows[0].to_dict().keys()) + with open(out, "w", newline="") as fh: + w = csv.DictWriter(fh, fieldnames=fields) + w.writeheader() + for r in rows: + w.writerow(r.to_dict()) + print(f"preprocess: wrote {out} ({len(rows)} rows across {n_arms} arms)", flush=True) + return 0 + + +if __name__ == "__main__": + import argparse + import sys + + ap = argparse.ArgumentParser( + description="Parse arm output dirs into data.csv (the analysis step); the report " + "notebook then just reads data.csv." + ) + ap.add_argument( + "arm_dirs", + nargs="*", + metavar="ARM_DIR", + help="arm output dirs, each holding arm.json + results/ + profile/ (default: output/*)", + ) + ap.add_argument("--out", default="data.csv", help="output CSV path (default: data.csv)") + args = ap.parse_args() + sys.exit(main(args.arm_dirs, args.out)) diff --git a/benchmark/llama70b/profile.sh b/benchmark/llama70b/profile.sh new file mode 100755 index 000000000..ae1ba375a --- /dev/null +++ b/benchmark/llama70b/profile.sh @@ -0,0 +1,92 @@ +#!/bin/bash +# profile.sh - vLLM Llama-3.3-70B-FP8 TP=8 PROFILING run (one baked arm). +# +# The mechanism run: same workload + operating point as bench.sh (shared via +# _serve.sh), but with the profiler ON, dumping the source data needed to explain WHY +# e2e looks the way it does - per-rank torch traces, the per-rank key_averages tables, +# optionally the Triton IR. A profiling run is a DIFFERENT run from the bench (tracing +# tax is asymmetric), so it's its own script, never the headline number. It writes RAW +# only; the analysis (preprocess.py -> data.csv, report.ipynb) is a separate pass. +# +# The arm is whatever the image baked (Dockerfile.baseline | .exp). +# +# Usage (PROFILE selects WHICH artifacts to keep - a comma list): +# ./profile.sh # DEFAULT summary,traces - what data.csv needs +# PROFILE=summary ./profile.sh # tables only (skip the GB chrome traces) +# PROFILE=summary,ir ./profile.sh # also keep the Triton IR (.ttgir/.llir/.amdgcn) +# PROFILE=all ./profile.sh # everything: summary + traces + ir +# NUM_PROMPTS=32 ./profile.sh # smaller/faster trace + +set -euo pipefail + +SCRIPT_DIR="$(dirname "$(realpath "${BASH_SOURCE[0]}")")" +export NUM_PROMPTS="${NUM_PROMPTS:-64}" # smaller sample than bench (traces are huge); same operating point +# PROFILE is the one profiling knob. Its PRESENCE tells the shared _serve.sh this is a +# profiling run (bench.sh never sets it, so it adds no --profile); its VALUE is the +# comma list of artifacts to KEEP. Default summary,traces is what data.csv needs: the +# per-rank key_averages tables (L3 per-kernel) AND the chrome traces (L2 compute/comms +# split). ir (the Triton codegen dump) is opt-in. `all` = summary,traces,ir. +export PROFILE="${PROFILE:-summary,traces}" +_keep() { [[ ",$PROFILE," == *",$1,"* || ",$PROFILE," == *",all,"* ]]; } +KEEP_TRACES=0; _keep traces && KEEP_TRACES=1 +KEEP_IR=0; _keep ir && KEEP_IR=1 +COMMAND=profile # output lands under output/-profile/ +source "$SCRIPT_DIR/_serve.sh" # server + operating point + run_workload + output dirs + +# Only make the dirs for what we keep (no empty dirs). +mkdir -p "$RESULTS_DIR" "$PROFILE_SUMMARY_DIR" "$TMP_DIR" +(( KEEP_TRACES )) && mkdir -p "$PROFILE_TRACES_DIR" + +# IR (opt-in): route Triton's JIT cache into profile/ir/ so the per-kernel +# .ttgir/.llir/.amdgcn (which localize codegen/fence bugs) ride along. A fresh dir +# forces a COLD compile so the dump is complete. When NOT keeping IR, leave +# TRITON_CACHE_DIR at its default (the warm cache) - no cold-compile tax. +if (( KEEP_IR )); then + export TRITON_CACHE_DIR="$PROFILE_IR_DIR" + mkdir -p "$TRITON_CACHE_DIR" +fi + +dump_arm +prefetch_model +ensure_sharegpt +export HF_HUB_OFFLINE=1 TRANSFORMERS_OFFLINE=1 + +echo "" +echo "==========================================" +echo "[profile] arm=$ARM input=$INPUT_LEN output=$OUTPUT_LEN prompts=$NUM_PROMPTS concurrency=$CONCURRENCY warmup=$WARMUP profile=$PROFILE (PROFILED)" +echo "==========================================" + +start_server # PROFILE set -> server wires the torch profiler to tmp/ (scratch) +wait_ready +run_workload "$ARM" # PROFILE set -> --profile, dumps per-rank torch traces to tmp/ +stop_server + +# Promote the keepers out of the scratch tmp/ into the structured dirs. vLLM dumps +# BOTH the per-rank key_averages tables (profiler_out_*.txt) AND the chrome traces +# into tmp/. The tables (cheap, high-signal) always promote to summary/; the GB .gz +# traces promote to traces/ only when `traces` is in PROFILE. +mv "$TMP_DIR"/profiler_out_*.txt "$PROFILE_SUMMARY_DIR"/ 2>/dev/null || true +if (( KEEP_TRACES )); then + mv "$TMP_DIR"/*.pt.trace.json.gz "$PROFILE_TRACES_DIR"/ 2>/dev/null || true +else + echo "[profile] PROFILE=$PROFILE: chrome traces not kept (left in tmp/, cleaned on success)" +fi + +# A wrapper must report the real outcome, and `vllm bench serve --profile` swallows a +# failed /stop_profile (it 500s but the CLI still exits 0), so a crashed profiler-stop +# would otherwise record a silent "done exit 0". Fail loudly (BEFORE the tmp/ cleanup, +# so the scratch survives for debugging) when the expected RAW output is missing. +shopt -s nullglob +[ -f "$RESULTS_DIR/vllm_${ARM}.json" ] || { echo "[profile] FATAL: no result JSON ($RESULTS_DIR/vllm_${ARM}.json) - workload did not complete (engine likely died; check the log for EngineDeadError)." >&2; exit 1; } +_tables=("$PROFILE_SUMMARY_DIR"/profiler_out_*.txt) +(( ${#_tables[@]} )) || { echo "[profile] FATAL: no profiler_out_*.txt under $PROFILE_SUMMARY_DIR - the collective /stop_profile crashed the engine (worker died mid-stop). NOT a valid profile; failing the arm." >&2; exit 1; } + +echo "" +echo "[profile] raw source under: $RESULTS_DIR (result), $PROFILE_DIR (summary/ traces/ ir/)" + +# tmp/ is scratch. Reaching this line means the run SUCCEEDED (set -e aborts on any +# real failure before here), so the un-promoted leftovers (the heavy chrome traces a +# summary-only run didn't keep) are no longer needed: delete tmp/ to keep the output +# small. The keepers were already promoted (summary/ traces/ ir/). +rm -rf "$TMP_DIR" +echo "[profile] run ok - cleaned scratch tmp/" diff --git a/benchmark/llama70b/report.ipynb b/benchmark/llama70b/report.ipynb new file mode 100644 index 000000000..717c05be6 --- /dev/null +++ b/benchmark/llama70b/report.ipynb @@ -0,0 +1,382 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "cell0", + "metadata": { + "execution": { + "iopub.execute_input": "2026-07-01T14:33:52.726515Z", + "iopub.status.busy": "2026-07-01T14:33:52.726312Z", + "iopub.status.idle": "2026-07-01T14:33:53.141077Z", + "shell.execute_reply": "2026-07-01T14:33:53.139721Z" + } + }, + "outputs": [], + "source": [ + "import sys\n", + "!{sys.executable} -m pip install -q pandas matplotlib 2>/dev/null || true" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "cell1", + "metadata": { + "execution": { + "iopub.execute_input": "2026-07-01T14:33:53.143102Z", + "iopub.status.busy": "2026-07-01T14:33:53.142856Z", + "iopub.status.idle": "2026-07-01T14:33:53.511843Z", + "shell.execute_reply": "2026-07-01T14:33:53.510657Z" + } + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "df = pd.read_csv(\"data.csv\", low_memory=False)\n", + "df[\"num\"] = pd.to_numeric(df[\"value\"], errors=\"coerce\")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "cell2", + "metadata": { + "execution": { + "iopub.execute_input": "2026-07-01T14:33:53.513870Z", + "iopub.status.busy": "2026-07-01T14:33:53.513645Z", + "iopub.status.idle": "2026-07-01T14:33:53.888883Z", + "shell.execute_reply": "2026-07-01T14:33:53.887536Z" + } + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABTsAAAGMCAYAAAAVynaIAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjgsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvwVt1zgAAAAlwSFlzAAAPYQAAD2EBqD+naQAArotJREFUeJzs3XdYFMf/B/D30XuVagHEimJDo1gAG6jYYsUSwa4Be0lsASvGbuxGg6jYa2JHxa6JvYsNxKggRgUrdX5/+Lv9et4Bh6IovF/Pc8/Dzc7OzO4t+7md252RCSEEiIiIiIiIiIiIiL5xGvndACIiIiIiIiIiIqK8wM5OIiIiIiIiIiIiKhDY2UlEREREREREREQFAjs7iYiIiIiIiIiIqEBgZycREREREREREREVCOzsJCIiIiIiIiIiogKBnZ1ERERERERERERUILCzk4iIiIiIiIiIiAoEdnYSERERERERERFRgcDOTiIiIiJS6dChQ5DJZNi0aVN+N+WjxMbGQiaTYcaMGfndlC8uICAAjo6O+d0MIiIioi+OnZ1ERET00UJCQiCTyfDkyZMs86jbYSaTySCTydCrVy+Vy8eMGSPlya6+3Lh//z7Gjx+P7777Dubm5ihSpAi8vLywf//+PClflefPn0NPTw8ymQzXr1/PNu/ly5chk8nwzz//APjfPpK/DA0N4eLigkmTJuH169cf3aY1a9Zgzpw5H70+qbZr1y6EhITkdzNybcqUKdi2bVt+N4OIiIjoo7Czk4iIiL4aenp62Lx5M1JTU5WWrV27Fnp6enla3/bt2/Hrr7+iVKlSmDRpEsaNG4cXL16gcePGCAsLy9O65DZu3AiZTAZbW1tERERkm3fnzp2wtrZGjRo1pLTGjRtj1apVWLVqFWbOnImqVati3Lhx8Pf3/+g2sbPz89i1axfGjx+f383INXZ2EhER0beMnZ1ERET01WjSpAmSk5Oxe/duhfQTJ04gJiYGvr6+eVpf/fr1ERcXhzVr1iAwMBCDBg3CiRMnUK5cOfzyyy95Wpfc6tWr0axZM3Tq1Alr1qzJNu+uXbvQtGlTyGQyKa1MmTLo2rUrunbtin79+iEiIgLt2rXDli1b8Pbt28/S5o/1KXeb0v8ewz906FB+N4WIiIjom8HOTiIiIlKwadMmyGQyHD58WGnZkiVLIJPJcOXKlc9Sd9GiReHh4aHUCRgREQFXV1dUrFhR7bIePHiAHj16wMbGBrq6uqhQoQL++OMPhTwVKlRAkSJFFNJ0dXXRrFkz/Pvvv3jx4oXCshs3bqBdu3awsLCAnp4eqlevjj///FPtNsXFxeHo0aPw8/ODn58fYmJicOLECZV5nz9/jhMnTqjVwWtrawuZTAYtLS0p7fXr17hx40aOj/x7eXlh586duHfvnvR4/IdjPWZmZmLy5MkoVqwY9PT00LBhQ9y+fVupnIoVK+Ls2bPw8PCAgYEBRo8eDQB4/PgxevbsCRsbG+jp6aFy5coIDw9XWF8+3MGHHXvyDr8VK1YopG/cuBEuLi7Q09NDxYoVsXXr1mzHqVy6dCmcnZ2hq6uLGjVq4PTp0wrLAwICYGRkhLt378LHxweGhoawt7fHhAkTIITIdTsDAgKwYMECAIrDD+SnGTNmoHbt2rC0tIS+vj7c3NyUhpeQyWR49eoVwsPDpTYHBARIy9X5v5Lvow0bNuR43ADA33//jWbNmsHc3ByGhoaoVKkS5s6dCwAICwuDTCbD+fPnldabMmUKNDU18eDBgzzYO0RERFRQaOWchYiIiAoTX19fGBkZYcOGDfD09FRYtn79elSoUCFXnY651blzZwwaNAgvX76EkZER0tPTsXHjRgwdOlTtOxcTEhJQq1YtyGQyBAUFwcrKCrt370bPnj2RnJyMwYMHZ7t+fHw8DAwMYGBgIKVdvXoVderUQdGiRfHzzz/D0NAQGzZsQOvWrbF582Z8//33ObZr7dq1MDQ0RPPmzaGvrw9nZ2dERESgdu3aSnn37t0LmUwGb29vhfS3b99KHZivXr3C8ePHER4ejs6dOyt0dv7zzz+oX78+goODsx03csyYMUhKSsK///6L2bNnAwCMjIwU8kydOhUaGhoYPnw4kpKSMG3aNHTp0gV///23Qr7//vsPTZs2hZ+fH7p27QobGxu8efMGXl5euH37NoKCguDk5ISNGzciICAAz58/x6BBg3Lcbx/auXMnOnbsCFdXV4SGhuLZs2fo2bMnihYtqjL/mjVr8OLFC/Tt2xcymQzTpk1DmzZtcPfuXWhra0v5MjIy0KRJE9SqVQvTpk3Dnj17EBwcjPT0dEyYMCFXbezbty8ePnyIyMhIrFq1Ktfb+DnMnTsXLVu2RJcuXZCamop169ahffv22LFjh9SpvmrVKvTq1Qvfffcd+vTpAwBwdnYGkPv/K3WOm8jISDRv3hx2dnYYNGgQbG1tcf36dezYsQODBg1Cu3btEBgYiIiICFStWlWh/IiICHh5eWX5uRMREVEhJYiIiIg+0KlTJ2FtbS3S09OltEePHgkNDQ0xYcIEKS04OFgAEImJiVmWFRUVJQCIjRs3ZlsnABEYGCiePn0qdHR0xKpVq4QQQuzcuVPIZDIRGxurVn1CCNGzZ09hZ2cnnjx5opDu5+cnTE1NxevXr7Nc99atW0JPT0/88MMPCukNGzYUrq6u4u3bt1JaZmamqF27tihdunS27ZFzdXUVXbp0kd6PHj1aFClSRKSlpSnl/eGHH4Snp6dCGgCVr9atWyu0S4j/7ffg4OAc2+Xr6yscHByU0uVllC9fXqSkpEjpc+fOFQDE5cuXpTRPT08BQCxevFihjDlz5ggAYvXq1VJaamqqcHd3F0ZGRiI5OVmhrqioKIX1Y2JiBAARFhYmpbm6uopixYqJFy9eSGmHDh0SABS2Q76upaWlePr0qZS+fft2AUD89ddfUpq/v78AIAYMGCClZWZmCl9fX6GjoyMdc7lpZ2BgoPiUr9vyMj+sSx3+/v5Kn+mHx31qaqqoWLGiaNCggUK6oaGh8Pf3VypT3f8rdY+b9PR04eTkJBwcHMSzZ88UyszMzJT+7tSpk7C3txcZGRlS2rlz55T2NxEREZEQQvAxdiIiIlLSsWNHPH78WOFR3U2bNiEzMxMdO3b8rHWbm5ujSZMmWLt2LYB3d+XVrl0bDg4Oaq0vhMDmzZvRokULCCHw5MkT6eXj44OkpCScO3dO5bqvX79G+/btoa+vj6lTp0rpT58+xcGDB9GhQwe8ePFCKu+///6Dj48Pbt26leOjtJcuXcLly5fRqVMnKa1Tp0548uQJ9u7dq5A3MzMTe/bsUfkIe6tWrRAZGYnIyEhs374do0aNwp49e9C5c2eFx629vLwghMiT2cC7d+8OHR0d6X29evUAAHfv3lXIp6uri+7duyuk7dq1C7a2tgrbra2tjYEDB+Lly5cqh0vIzsOHD3H58mV069ZN4Q5UT09PuLq6qlynY8eOMDc3z7H9ABAUFCT9Lb+DMTU1Ffv3789VOz/Gy5cvFY7XZ8+eAQCSkpIU0pOSkj6qfH19fenvZ8+eISkpCfXq1cvy/+F9H/N/ldNxc/78ecTExGDw4MEwMzNTWPf9R/67deuGhw8fIioqSkqLiIiAvr4+2rZtq/4OICIiokKBj7ETERGRkiZNmsDU1BTr169Hw4YNAbx7hL1KlSooU6bMZ6+/c+fO+OGHHxAXF4dt27Zh2rRpaq+bmJiI58+fY+nSpVi6dKnKPI8fP1ZKy8jIgJ+fH65du4bdu3fD3t5eWnb79m0IITBu3DiMGzcuyzKze5x29erVMDQ0RMmSJaVxC/X09ODo6IiIiAiFjs3Tp08jMTFRZWdnsWLF0KhRI+l9y5YtYWlpieHDh2PHjh1o0aJFlm34WCVKlFB4L+84lHfGyRUtWlShcwsA7t27h9KlS0NDQ/E39vLly0vLc0Oev1SpUkrLSpUqpbLjTt32a2hooGTJkgpp8uM9NjY2V+38GEFBQUpjmQJA69atFd57enp+1KRFO3bswKRJk3DhwgWkpKRI6eqMJfox/1c57fc7d+4AQI7DYjRu3Bh2dnaIiIhAw4YNkZmZibVr16JVq1YwNjbOse1ERERUuLCzk4iIiJTo6uqidevW2Lp1KxYuXIiEhAQcP34cU6ZM+SL1t2zZErq6uvD390dKSgo6dOig9rqZmZkAgK5du8Lf319lnkqVKiml9e7dGzt27EBERAQaNGigsszhw4fDx8dHZZmqOt/khBBYu3YtXr16BRcXF6Xljx8/lsYoBd7dDeno6KgyryryDukjR458ls5OTU1Nlenv30kKKN45mFtZdbhlZGR8dJly6rZfHZ+znSNHjkTXrl2l9wkJCejatStmzJiBypUrS+nv36WqrqNHj6Jly5bw8PDAwoULYWdnB21tbYSFhSlNCKbKx/xf5dV+19TUROfOnfH7779j4cKFOH78OB4+fKiwr4iIiIjk2NlJREREKnXs2BHh4eE4cOAArl+/DiHEZ3+EXU5fXx+tW7fG6tWr0bRpU6UZ07NjZWUFY2NjZGRkKNwBmZ0RI0YgLCwMc+bMUXjcWk5+t5+2trbaZb7v8OHD+PfffzFhwgTpjka5Z8+eoU+fPti2bZvUebNz5040a9ZM7fLT09MBvHsM+mN8zlnCHRwccOnSJWRmZirc3Xnjxg1pOfC/Drznz58rrP/hnZ/y/Kpm9VaVlhuZmZm4e/euwt3LN2/eBABplnd12wnkfr+6uLgodHDL7yZ1c3ODl5dXrsr60ObNm6Gnp4e9e/dCV1dXSg8LC1PKq6rdH/N/lRP5xEdXrlzJscxu3bph5syZ+Ouvv7B7925YWVll+cMDERERFW4cs5OIiIhUatSoESwsLLB+/XqsX78e3333HZycnL5Y/cOHD0dwcHCWj41nRVNTE23btsXmzZtx5coVpeWJiYkK76dPn44ZM2Zg9OjRWc4Mbm1tDS8vLyxZsgSPHj3KscwPyR9hHzFiBNq1a6fw6t27N0qXLo2IiAgA7+7mO3funMpH2LPy119/AYDC3X+vX7/GjRs3pJnbs2NoaPjR40DmpFmzZoiPj8f69eultPT0dMybNw9GRkbw9PQE8K4TU1NTE0eOHFFYf+HChQrv7e3tUbFiRaxcuVKhc/fw4cO4fPnyJ7d3/vz50t9CCMyfPx/a2trS3bPqthN4t18B5Y7R/KCpqQmZTKZwB2psbCy2bdumlNfQ0FCpzbn9v1JHtWrV4OTkhDlz5ijV9+Hdn5UqVUKlSpWwbNkybN68GX5+ftDS4n0bREREpIzfEIiIiEglbW1ttGnTBuvWrcOrV68wY8aMLPPOmjULBgYGCmkaGhoYPXq09H7z5s3S3Xzv8/f3R/HixZXSK1eurNB5lxtTp05FVFQUatasid69e8PFxQVPnz7FuXPnsH//fjx9+hQAsHXrVowcORKlS5dG+fLlsXr1aoVyGjduDBsbGwDAggULULduXbi6uqJ3794oWbIkEhIScPLkSfz777+4ePGiyrakpKRg8+bNaNy4MfT09FTmadmyJebOnYvHjx9j165d0NPTQ/369VXmvXnzptTO169f49SpUwgPD0epUqXwww8/SPn++ecf1K9fH8HBwTlOUuTm5ob169dj6NChqFGjBoyMjPLscfg+ffpgyZIlCAgIwNmzZ+Ho6IhNmzbh+PHjmDNnjjTmoqmpKdq3b4958+ZBJpPB2dkZO3bsUDm+6pQpU9CqVSvUqVMH3bt3x7NnzzB//nxUrFjxo+9uBd6Nobpnzx74+/ujZs2a2L17N3bu3InRo0fDysoq1+10c3MDAAwcOBA+Pj7Q1NSEn5/fR7fvU/j6+mLWrFlo0qQJOnfujMePH2PBggUoVaoULl26pJDXzc0N+/fvx6xZs2Bvbw8nJyfUrFlT7f8rdWloaGDRokVo0aIFqlSpgu7du8POzg43btzA1atXlSbu6tatG4YPHw4AfISdiIiIspYfU8ATERHRtyEyMlIAEDKZTNy/f19peXBwsACg8qWpqSmEECIqKirLPADE0aNHhRBCABCBgYHZtkdeX2JiYo5tT0hIEIGBgaJ48eJCW1tb2NraioYNG4qlS5eq1X4AIioqSqHMO3fuiG7duglbW1uhra0tihYtKpo3by42bdqUZTs2b94sAIjly5dnmefQoUMCgJg7d65o166daNasmcp8qvZxsWLFRJ8+fURCQoJCXvl+Dw4OznFfvXz5UnTu3FmYmZkJAMLBwUGhjI0bNyrkj4mJEQBEWFiYlObp6SkqVKigsvyEhATRvXt3UaRIEaGjoyNcXV0V1pVLTEwUbdu2FQYGBsLc3Fz07dtXXLlyRakuIYRYt26dKFeunNDV1RUVK1YUf/75p2jbtq0oV66cUjunT5+uVNeH+8bf318YGhqKO3fuCG9vb2FgYCBsbGxEcHCwyMjI+Kh2pqeniwEDBggrKyshk8lEbr96y9v/4XGoDn9/f+lzlFu+fLkoXbq00NXVFeXKlRNhYWHS/8D7bty4ITw8PIS+vr4AIPz9/aVl6vxf5ea4EUKIY8eOicaNGwtjY2NhaGgoKlWqJObNm6e0TY8ePRKampqiTJkyud4fREREVHjIhPiIkdmJiIiIKM+lp6fD0tISoaGh+PHHH/O7Od+cKlWqwMrKCpGRkbleNyAgAJs2bfqkO0Pp83ry5Ans7Ozwyy+/5Hp4CyIiIio8OGYnERER0Vfi6dOnGDJkCL7//vv8bspXLS0tTZqUSe7QoUO4ePHiJ0/kQ1+vFStWICMjQ2G4BiIiIqIPccxOIiIioq+EtbV1juNrEvDgwQM0atQIXbt2hb29PW7cuIHFixfD1tYW/fr1y+/mUR47ePAgrl27hsmTJ6N169ZwdHTM7yYRERHRV4ydnURERET0TTE3N4ebmxuWLVuGxMREGBoawtfXF1OnToWlpWV+N4/y2IQJE3DixAnUqVMH8+bNy+/mEBER0VeOY3YSERERERERERFRgcAxO4mIiIiIiIiIiKhAYGcnERERERERERERFQjs7CQiIiIiIiIiIqICgZ2dREREREREREREVCCws5OIiIiIiIiIiIgKBHZ2EhERERERERERUYHAzk4iIiIiIiIiIiIqENjZSURERERERERERAUCOzuJiIiIiIiIiIioQGBnJxERERERERERERUI7OwkIiIiIiIiIiKiAoGdnURERERERERERFQgsLOTiIiIiIiIiIiICgR2dhIREREREREREVGBwM5OIiIiIiIiIiIiKhDY2UlEREREREREREQFAjs7iYiIiIiIiIiIqEBgZycREREREREREREVCOzsJCIiIiIiIiIiogKBnZ1ERERERERERERUILCzk4iIiIiIiIiIiAoEdnYSAZDJZAgKCsrvZmRrxYoVkMlkOHPmTH435aMcOnQIMpkMmzZtyu+mqO3ly5ewtrZGREREnpb7uY+3WrVqYeTIkZ+tfKKCwNHREQEBAfndjC9i1apVKFeuHLS1tWFmZgYA8PLygpeXV76261N8izHlW/e5YmJOfv75Z9SsWfOL1kn0tShMsYo+D8bL/Hf//n3o6enh+PHjX7RePz8/dOjQ4YvW+TVhZyepZeHChVixYsUXqevatWsICQlBbGysWvl37dqFkJCQz9qmL+lL7uvCZM2aNZgzZ06u1pk7dy6MjY3h5+cnpeXH8da2bVs0a9ZM7fw//fQTFixYgPj4+M/YKqKv34kTJxASEoLnz5/nd1Ny9LnOLTdu3EBAQACcnZ3x+++/Y+nSpXleB5D79hfGWBcSEgKZTJbjy8vLS+18ABAQEJBlnj179qhVlkwmw6FDh7Jtv6qY+CUMHjwYFy9exJ9//vlF6yX6Ur6lWFUQvX79GiEhITmeA/MK42XOchMvAeU4aGJigsqVK2PmzJlISUlRKv/48eP4/vvvYWNjA11dXTg6OqJv376Ii4uT8sTGxqodP3Pqt5gwYQJq1qyJOnXq5OVuytFPP/2EzZs34+LFi1+03q+FVn43gL4NCxcuRJEiRb7IL4vXrl3D+PHj4eXlBUdHxxzz79q1CwsWLCgwHZ5fcl8XJmvWrMGVK1cwePBgtfKnpaVh7ty5GDJkCDQ1NaX0L328paWlITIyEqGhoWqv06pVK5iYmGDhwoWYMGHCZ2wd0dftxIkTGD9+PAICAqQ7GuWio6OhofH1/Ob7uc4thw4dQmZmJubOnYtSpUpJ6fv27cvTenLb/sIY69q0aaPwGbx8+RL9+/fH999/jzZt2kjp//33H3r16pVjPhsbG+lvXV1dLFu2TKnOypUrY9WqVQppK1euRGRkpFJ6+fLls2x7VjHxS7C1tUWrVq0wY8YMtGzZ8ovWTfQlfEuxqiB6/fo1xo8fDwBf5IkHxsucqRsvs4qDz58/x+bNmzF8+HCcPn0a69atk/LNmzcPgwYNQsmSJTFgwADY2dnh+vXrWLZsGdavX49du3ahdu3asLKyUoqTM2fOxL///ovZs2crpFtZWWW5LYmJiQgPD0d4ePjH7YxPULVqVVSvXh0zZ87EypUrv3j9+Y2dnUSFgBACb9++hb6+fn435ZuxY8cOJCYm5vut/0ePHsWLFy/g6+ur9joaGhpo164dVq5cifHjx0Mmk33GFhJ9m3R1dfO7CV/E48ePAUDpAlpHRyfHdd++fQsdHR1eaOeRSpUqoVKlStL7J0+eoH///qhUqRK6du2a5Xrq5NPS0spy2Yfpp06dQmRkZLZ1fii/Y2KHDh3Qvn173L17FyVLlsyXNhDlh8ISq97H6xb6mHj5YRz88ccfUbNmTaxfvx6zZs2Cvb09jh8/jsGDB6Nu3brYs2cPDAwMpPz9+/dHnTp10K5dO1y9ehXm5uZKda1btw7Pnj3LVfxcvXo1tLS00KJFC7XXyUsdOnRAcHAwFi5cCCMjo3xpQ37ht9cC6vz582jatClMTExgZGSEhg0b4tSpUwp55LeHf0g+NqT8dmxHR0dcvXoVhw8fVrplXJ73yJEj6Nu3LywtLWFiYoJu3brh2bNnCuXKZDKVv2C9PxbNihUr0L59ewBA/fr1c3y0KiAgAAsWLJDKl7/kXr16hWHDhqF48eLQ1dVF2bJlMWPGDAghctqFmDRpEjQ0NDBv3jwpbffu3ahXrx4MDQ1hbGwMX19fXL16ValNRkZGePDgAVq3bg0jIyNYWVlh+PDhyMjIyLbO7Pa1XEpKCoYOHQorKysYGhri+++/R2JiolI5zZs3x969e1G9enXo6+tjyZIlAIC7d++iffv2sLCwgIGBAWrVqoWdO3cqrP/hMSAnH/Plw89jwYIFKFmyJPT19fHdd9/h6NGjWY4Hl5mZicmTJ6NYsWLQ09NDw4YNcfv2bYU8Xl5eqFixIs6ePYvatWtDX18fTk5OWLx48Ue108vLCzt37sS9e/ek/ZrTXcPbtm2Do6MjnJ2dpbQvfbwBwM6dO+Hi4iK1Nz4+Ht27d0exYsWgq6sLOzs7tGrVSmkfNG7cGPfu3cOFCxdyrJuoIAoJCcGIESMAAE5OTkqPGn04Dpr8fHLs2DEMHDgQVlZWMDMzQ9++fZGamornz5+jW7duMDc3h7m5OUaOHKn0v52ZmYk5c+agQoUK0NPTg42NDfr27asUDz/0uc4tjo6OCA4OBvDuroP34/CH52j5eXPdunUYO3YsihYtCgMDAyQnJyMtLQ3jx49H6dKloaenB0tLS9StWxeRkZFqtV9Vu7KLderEKVVSUlLQvHlzmJqa4sSJEwDU/0zkcfPYsWP47rvvoKenh5IlSxbKOyFUURUTgf9954mLi0Pz5s1hZGSEokWLSsfD5cuX0aBBAxgaGsLBwQFr1qxRWD+nY0uuUaNGAIDt27d/xq0k+vK+pVgF/O9//u7du/Dx8YGhoSHs7e0xYcKEj64nu+uWrGzcuBFubm7Q19dHkSJF0LVrVzx48EAhT1bXIgEBAdL36tjYWOmuPPkNAu/HSnW3N6trJPmj0PLH0BkvvxwNDQ1pX8n/nyZOnAiZTIbw8HCFjk4AcHZ2xrRp0/Do0aMcj7/c2LZtG2rWrKnU0Si/3r106RI8PT1hYGCAUqVKSWOrHj58GDVr1oS+vj7Kli2L/fv3K6z/4sULDB48GI6OjtDV1YW1tTUaN26Mc+fOKeRr3LgxXr16pRRXCwPe2VkAXb16FfXq1YOJiQlGjhwJbW1tLFmyBF5eXtI/TW7MmTMHAwYMgJGREcaMGQNA8ZZxAAgKCoKZmRlCQkIQHR2NRYsW4d69e9KJX10eHh4YOHAgfvvtN4wePVp6pCqrR6v69u2Lhw8fqnwcSwiBli1bIioqCj179kSVKlWwd+9ejBgxAg8ePFC6/fx9Y8eOxZQpU7BkyRL07t0bwLsJHvz9/eHj44Nff/0Vr1+/xqJFi1C3bl2cP39eofMsIyMDPj4+qFmzJmbMmIH9+/dj5syZcHZ2Rv/+/bOsV519PWDAAJibmyM4OBixsbGYM2cOgoKCsH79eoV80dHR6NSpE/r27YvevXujbNmySEhIQO3atfH69WsMHDgQlpaWCA8PR8uWLbFp0yZ8//33WbYtK4sWLUJQUBDq1auHIUOGIDY2Fq1bt4a5uTmKFSumlH/q1KnQ0NDA8OHDkZSUhGnTpqFLly74+++/FfI9e/YMzZo1Q4cOHdCpUyds2LAB/fv3h46ODnr06JGrNo4ZMwZJSUkKjx3k9MvWiRMnUK1aNYW0L3m8ye3atQvNmzeX3rdt2xZXr17FgAED4OjoiMePHyMyMhJxcXEKx6CbmxuAd2PSVK1aNdttJSqI2rRpg5s3b2Lt2rWYPXs2ihQpAiD7R42Ad+dYW1tbjB8/HqdOncLSpUthZmaGEydOoESJEpgyZQp27dqF6dOno2LFiujWrZu0bt++fbFixQp0794dAwcORExMDObPn4/z58/j+PHj0NbWVlnn5zq3zJkzBytXrsTWrVuxaNEiGBkZKdwpocrEiROho6OD4cOHIyUlBTo6OggJCUFoaCh69eqF7777DsnJyThz5gzOnTuHxo0bZ9v+rNqVVaz72Dj15s0btGrVCmfOnMH+/ftRo0YNad+q+5ncvn0b7dq1Q8+ePeHv748//vgDAQEBcHNzQ4UKFXLcrvz25MkThffa2towNTXNk7JVxUS5jIwMNG3aFB4eHpg2bRoiIiIQFBQEQ0NDjBkzBl26dEGbNm2wePFidOvWDe7u7nBycgKAHI8tOVNTUzg7O+P48eMYMmRInmwT0dfgW4pVchkZGWjSpAlq1aqFadOmYc+ePQgODkZ6errC8Em5qUfVdUtW5GXWqFEDoaGhSEhIwNy5c3H8+HGcP39e6UmG7FhZWWHRokVKj0i/HyvV3V51MF5+WXfu3AEAWFpa4vXr1zhw4ADq1asnxaAPdezYEX369MGOHTvw888/f3L9aWlpOH36dJbX/8+ePUPz5s3h5+eH9u3bY9GiRfDz80NERAQGDx6Mfv36oXPnzpg+fTratWuH+/fvw9jYGADQr18/bNq0CUFBQXBxccF///2HY8eO4fr16wrx2sXFBfr6+tI4pYWKoAKndevWQkdHR9y5c0dKe/jwoTA2NhYeHh5SWnBwsFB1CISFhQkAIiYmRkqrUKGC8PT0zDKvm5ubSE1NldKnTZsmAIjt27dLaQBEcHCwUhkODg7C399fer9x40YBQERFRam1vYGBgSq3Y9u2bQKAmDRpkkJ6u3bthEwmE7dv31ZoW2BgoBBCiGHDhgkNDQ2xYsUKafmLFy+EmZmZ6N27t0JZ8fHxwtTUVCHd399fABATJkxQyFu1alXh5uaW4/bktK8bNWokMjMzpfQhQ4YITU1N8fz5cynNwcFBABB79uxRKGPw4MECgDh69KjCtjk5OQlHR0eRkZGhUNf7x4AQQkRFRSl8NikpKcLS0lLUqFFDpKWlSflWrFghAChsh3zd8uXLi5SUFCl97ty5AoC4fPmylObp6SkAiJkzZ0ppKSkpokqVKsLa2lo61tRtpxBC+Pr6CgcHB6X9qkpaWpqQyWRi2LBhSsu+xPEmd/fuXYXtePbsmQAgpk+frtZ26OjoiP79+6uVl6ggmj59uspzhBDKsUd+PvHx8VE4x7q7uwuZTCb69esnpaWnp4tixYopnOOOHj0qAIiIiAiFevbs2aMy/UN5cW5RRR7rExMTFdI9PT1VnqNLliwpXr9+rZC3cuXKwtfX96Pan5WsYp26cUre3o0bN4oXL14IT09PUaRIEXH+/Hlpvdx8JvK4eeTIESnt8ePHQldXV2UsyAuJiYlZfjfKTT75944PX6r2rxC5/6yyi4nyuqdMmSKlPXv2TOjr6wuZTCbWrVsnpd+4cUNpO9Q5tuS8vb1F+fLl1W430bfiW4pV8v/5AQMGSGmZmZnC19dX6OjoSLHmY86/H163qJKamiqsra1FxYoVxZs3b6T0HTt2CADil19+kdI+jHPvb8P71wTZnWPV3V5V1x5CCBETEyMAiLCwMCmN8TL31ImDhoaGIjExUSQmJorbt2+LKVOmCJlMJipVqiSEEOLChQsCgBg0aFC2dVWqVElYWFioXJab60khhLh9+7YAIObNm6e0TH69u2bNGilNHic1NDTEqVOnpPS9e/cqHUempqbS9WROypQpI5o2bap2uwsKPsZewGRkZGDfvn1o3bq1wphGdnZ26Ny5M44dO4bk5OQ8r7dPnz4Kv/b0798fWlpa2LVrV57Xpa5du3ZBU1MTAwcOVEgfNmwYhBDYvXu3QroQAkFBQZg7dy5Wr14Nf39/aVlkZCSeP3+OTp064cmTJ9JLU1MTNWvWRFRUlFL9/fr1U3hfr1493L1795O3q0+fPgp3y9arVw8ZGRm4d++eQj4nJyf4+PgopO3atQvfffcd6tatK6UZGRmhT58+iI2NxbVr13LVljNnzuC///5D7969oaX1vxvFu3TpAnNzc5XrdO/eXWGsuHr16gGA0r7R0tJC3759pfc6Ojro27cvHj9+jLNnz+aqnbn19OlTCCGy3AZV8vJ4k9u5cydMTU2lz0tfXx86Ojo4dOiQWo8amZubK93pQ0TZ69mzp8I5tmbNmhBCoGfPnlKapqYmqlevrnDe2rhxI0xNTdG4cWOFOOHm5gYjIyOVcUIduT23fCp/f3+lcdLMzMxw9epV3Lp1K0/rUiW3cSopKQne3t64ceMGDh06hCpVqkjLcvuZuLi4SDEJeHfHT9myZfMkdn9uenp6iIyMVHjNnDkzT8pWJya+P6GSmZkZypYtC0NDQ4UxPsuWLQszMzOF/ZmbY4sxjeh/8jtWBQUFSX/LZDIEBQUhNTVVetQ2t/Woum5R5cyZM3j8+DF+/PFH6OnpSem+vr4oV66cWo9wf4yctjc/MF4qevXqFaysrGBlZYVSpUph9OjRcHd3x9atWwG8e+wbgHRnZFaMjY3zrL/kv//+A4As46eRkRH8/Pyk9/I4Wb58eYWnceV/fxg///77bzx8+DDHdhTW+MnH2AuYxMREvH79WuWt/+XLl0dmZibu37+f57eXly5dWuG9kZER7OzslMYR/JLu3bsHe3t7pROa/JH4DzsHV65ciZcvX2LRokXo1KmTwjL5l/AGDRqorMvExEThvZ6entLjJ+bm5mp1UOWkRIkSSuUCUCpb1e359+7dUzmMwfv7pGLFimq3Rb4P358tD3jXUZnVmJjqtt/e3h6GhoYKaWXKlAHwbtyVWrVqqd3OjyXUGGtTLi+PN7mdO3fC29tb6kjW1dXFr7/+imHDhsHGxga1atVC8+bN0a1bN9ja2qpsPycnIsqdD89R8seAixcvrpT+/nnr1q1bSEpKgrW1tcpy5RMF5VZuzy2fSlXsmDBhAlq1aoUyZcqgYsWKaNKkCX744YccH4n/GLmNU4MHD8bbt29x/vx5pe82uf1MPvzsAfVid2JiosKY3EZGRl98EgBNTU1pXMvPJauYqOo7j6mpKYoVK6YUgz78v8nNscWYRvQ/+RmrNDQ0lCYKe/87+sfUk9VjxR+SxzxV17rlypXDsWPH1ConN9TZ3vzAeKlIT08Pf/31F4B310xOTk4KQ6rJv0fJOz2z8uLFixw7RHMrq/iZVZxU9X8MKF4vT5s2Df7+/ihevDjc3NzQrFkzdOvWTeUkfoU1frKzsxDL6oDPaRKdvPal68tKnTp1cOHCBcyfPx8dOnSAhYWFtCwzMxPAu3E7VXUqvX9XI/DuouNzyarsD0+inzKD4ec8NtRtvzo+VzstLCwgk8nypHM6K9kdbwDw+vVrHDp0CIsWLVJIHzx4MFq0aIFt27Zh7969GDduHEJDQ3Hw4EGlsTmfP38ujf1EROrJ6hylKv3981ZmZiasra0RERGhcv2cxl/7WqiKHR4eHrhz5w62b9+Offv2YdmyZZg9ezYWL16scEdffmjVqhXWrVuHqVOnYuXKlQozx+f2M/nY+FSjRg2FTufg4GCVEzJ+q3KKibn5nwEU92dujq1nz54xphH9v689VuW2ns8x87pMJlN5/v4c155fy3V1dgp6vMzpR79SpUpBS0sLly5dyjJPSkoKoqOjUb169Txpk6WlJQDlm3rkPiV+dujQAfXq1cPWrVuxb98+TJ8+Hb/++iu2bNmCpk2bKqz37NkzpZvTCgN2dhYwVlZWMDAwQHR0tNKyGzduQENDQ/qlQH5H3fPnzxUGclZ1l0hOvwTcunUL9evXl96/fPkSjx49QrNmzaQ0c3NzPH/+XGG91NRUPHr0KFd1qds2BwcH7N+/X+nXmRs3bkjL31eqVClMmzYNXl5eaNKkCQ4cOCCtJ5991Nra+rPfOfE5f3VxcHDI8tiQLwcUj433fXhsyPPfvn1b4fNPT09HbGzsJ9318/DhQ7x69Urh7s6bN28CgHTXqLrtBHK3X7W0tODs7IyYmBi1y8nL4w0ADh48iJSUFKVgBbw7HocNG4Zhw4bh1q1bqFKlCmbOnInVq1dLeR48eIDU1NQsJ/ciKgy+5K/Yzs7O2L9/P+rUqfNRF215dW75XCwsLNC9e3d0794dL1++hIeHB0JCQqQOqbyM3erEKbnWrVvD29sbAQEBMDY2VviB6FM/E3VFRETgzZs30ntVd1V8y7KLiXkhp2NLLiYmBpUrV/4sbSDKT99SrALedYzdvXtXursRUP6O/rnOv/IYEB0drfTEXXR0tEKMMDc3V/lY9YfXCTntf3W293Ndk2SXn/EydwwNDVG/fn0cPHgQ9+7dU/n9acOGDdJM9XmhRIkS0NfX/2zx087ODj/++CN+/PFHPH78GNWqVcPkyZMVrh/T09Nx//59tGzZ8rO04WvGMTsLGE1NTXh7e2P79u0Kt9UnJCRgzZo1qFu3rvTItbwD78iRI1K+V69eITw8XKlcQ0NDpZP3+5YuXYq0tDTp/aJFi5Cenq7wj+bs7KxQl3y9D3/xknduZVefOvmbNWuGjIwMzJ8/XyF99uzZkMlkKjuRKlWqhF27duH69eto0aKFdDL28fGBiYkJpkyZorCdcomJiWq1VR057etP0axZM/zzzz84efKklPbq1SssXboUjo6OcHFxAaD62MjIyMDSpUsVyqtevTosLS3x+++/Iz09XUqPiIj45Lsi09PTsWTJEul9amoqlixZAisrK2mmcXXbCbzbr0lJSWrX7+7ujjNnzqgsB/i8xxvwbhye6tWrSzMuAu/u9nz79q1CGc7OzjA2NkZKSopCunxc09q1a6uxtUQFU27jyafo0KEDMjIyMHHiRKVl6enpObYhL88teU0+5pSckZERSpUqpXDe+ZjYrSqvunHqfd26dcNvv/2GxYsX46effpLSP/UzUVedOnXQqFEj6VXQOjuBrGPip1Ln2ALejTV3584dxjQqkL6lWCX3fkwSQmD+/PnQ1tZGw4YN87SeD1WvXh3W1tZYvHixwnli9+7duH79Onx9faU0Z2dn3LhxQ+E67eLFizh+/LhCmQYGBgCy3/85ba+DgwM0NTWVrnUXLlyoVBbjZf7Fy7Fjx0IIgYCAAIXrLuDdD2ojR46EnZ2dwrwRn0JbWxvVq1fP8/iZkZGhdF1rbW0Ne3t7pfh57do1vH37tlDGT97ZWQBNmjQJkZGRqFu3Ln788UdoaWlhyZIlSElJwbRp06R83t7eKFGiBHr27IkRI0ZAU1MTf/zxB6ysrBAXF6dQppubGxYtWoRJkyahVKlSsLa2Vvg1LTU1FQ0bNkSHDh0QHR2NhQsXom7dugq/IPTq1Qv9+vVD27Zt0bhxY1y8eBF79+5VeiSpSpUq0NTUxK+//oqkpCTo6uqiQYMGWY4hIu/4GjhwIHx8fKCpqQk/Pz+0aNEC9evXx5gxYxAbG4vKlStj37592L59OwYPHix1lH2oVq1a2L59O5o1a4Z27dph27ZtMDExwaJFi/DDDz+gWrVq8PPzk/bTzp07UadOHaUL0Y+V077+FD///DPWrl2Lpk2bYuDAgbCwsEB4eDhiYmKwefNm6XGGChUqoFatWhg1ahSePn0KCwsLrFu3TqFDE3g3aVBISAgGDBiABg0aoEOHDoiNjcWKFSvg7Oz8Sb9U29vb49dff0VsbCzKlCmD9evX48KFC1i6dKk0GZa67QTe7df169dj6NChqFGjBoyMjNCiRYss62/VqhVWrVqFmzdvKvyS+yWON21tbezatQvdu3dXyHvz5k3p/8zFxQVaWlrYunUrEhISFAa3Bt5NqlWiRAmlR9uJChP5/+uYMWPg5+cHbW1ttGjRQmk84Lzg6emJvn37IjQ0FBcuXIC3tze0tbVx69YtbNy4EXPnzkW7du1ybGtenVvykouLC7y8vODm5gYLCwucOXMGmzZtUpiwIav2ZyWrWKdunPpQUFAQkpOTMWbMGJiammL06NGf/JnQ/2QVEz+VOscWAOzfvx9CCLRq1SrP6ib6WnxLsQp4Nzbinj174O/vj5o1a2L37t3YuXMnRo8eLT3u/LnOv9ra2vj111/RvXt3eHp6olOnTkhISMDcuXPh6OiIIUOGSHl79OiBWbNmwcfHBz179sTjx4+xePFiVKhQQWECGn19fbi4uGD9+vUoU6YMLCwsULFiRWm8S3W219TUFO3bt8e8efMgk8ng7OyMHTt2qBwDlfEy/3h4eGDGjBkYOnQoKlWqhICAANjZ2eHGjRv4/fffkZmZiV27duVqktqctGrVCmPGjEFycrLSPB8f68WLFyhWrBjatWuHypUrw8jICPv378fp06eVJieMjIyEgYEBGjdunCd1f1O+zKTv9KWdO3dO+Pj4CCMjI2FgYCDq168vTpw4oZTv7NmzombNmkJHR0eUKFFCzJo1S4SFhQkAIiYmRsoXHx8vfH19hbGxsQAgPD09hRBCynv48GHRp08fYW5uLoyMjESXLl3Ef//9p1BXRkaG+Omnn0SRIkWEgYGB8PHxEbdv3xYODg7C399fIe/vv/8uSpYsKTQ1NQUAERUVleW2pqeniwEDBggrKyshk8nE+4f1ixcvxJAhQ4S9vb3Q1tYWpUuXFtOnTxeZmZkKZQAQgYGBCmnbt28XWlpaomPHjiIjI0MIIURUVJTw8fERpqamQk9PTzg7O4uAgABx5swZaT1/f39haGio1M7g4GChzr9cTvv69OnTCvmjoqKU9pGDg4Pw9fVVWf6dO3dEu3bthJmZmdDT0xPfffed2LFjh8p8jRo1Erq6usLGxkaMHj1aREZGqvw8fvvtN+Hg4CB0dXXFd999J44fPy7c3NxEkyZNlNq5ceNGhXVjYmIEABEWFialeXp6igoVKogzZ84Id3d3oaenJxwcHMT8+fM/up0vX74UnTt3FmZmZgKAcHBwULl/5FJSUkSRIkXExIkTFdK/xPF25coVAUD8888/CnmePHkiAgMDRbly5YShoaEwNTUVNWvWFBs2bFDIl5GRIezs7MTYsWOz3UaiwmDixImiaNGiQkNDQyG2fRh7sjrHys/diYmJCulZneuXLl0q3NzchL6+vjA2Nhaurq5i5MiR4uHDh9m2My/OLapk1X5PT08pvgiR9TlaCCEmTZokvvvuO2FmZib09fVFuXLlxOTJk0Vqaqpa7Vclq1gnhHpxKqv2jhw5UgBQiBfqfCZZxc0P91NeSkxMFABEcHDwJ+XL6ljMSmBgoFrfR96XVUzMqm55HP/Qh/tZnWNLCCE6duwo6tatm6s2E31LvpVYJS/vzp07wtvbWxgYGAgbGxsRHBwsXS/ltp7srluysn79elG1alWhq6srLCwsRJcuXcS///6rlG/16tWiZMmSQkdHR1SpUkXs3btX+Pv7K10HnDhxQri5uQkdHR2F821utjcxMVG0bdtWGBgYCHNzc9G3b1/pO/371zmMl7mX13HwyJEjolWrVqJIkSJCW1tblChRQvTu3VvExsZmu56vr2+O15AfSkhIEFpaWmLVqlUK6erGSbn3rx9TUlLEiBEjROXKlYWxsbEwNDQUlStXFgsXLlRar2bNmqJr1665anNBIRPiI2YFIfp/K1asQPfu3XH69Ok8G8iXvn2ZmZmwsrJCmzZt8Pvvv+d6fS8vLzx58gRXrlz5DK1T38SJExEWFoZbt2591kmnPjRt2jTMmjULjx49+qi7Y7dt24bOnTvjzp07sLOz+wwtJCKiwia/YmJ8fDycnJywbt063tlJlM8CAgKwadMmvHz5Mr+b8kUUtu2lz6Nnz564efMmjh49+kXrvXDhAqpVq4Zz586hSpUqX7TurwHH7CSiT/L27VulmfdWrlyJp0+fwsvLK38alUeGDBmCly9fYt26dV+0XkdHR2k8vo/x66+/IigoiB2dRESUZ/IrJs6ZMweurq7s6CQiom9ScHAwTp8+rTRe7Oc2depUtGvXrlB2dAIcs5OIPtGpU6cwZMgQtG/fHpaWljh37hyWL1+OihUron379vndvE9iZGSkcqydz61Dhw6ftP77A5UTERHlhfyKiVOnTv3idRIREeWVEiVKKE0y+yV86R8nvzbs7CSiT+Lo6IjixYvjt99+kyYJ6tatG6ZOnQodHZ38bh4RERERERERFSIcs5OIiIiIiIiIiIgKBI7ZSURERERERERERAUCOzuJiIiIiIiIiIioQGBnJxHliRUrVkAmk+HMmTP53RSVAgIC4OjoqJAmk8kQEhKSL+0hIqJvk6OjI5o3b57fzVApNjYWMpkMK1askNJCQkIgk8nyr1FERFSg8LqPvgXs7CQCsG/fPvTs2RMVK1aEpqam0snxQ3fu3EHnzp1hbW0NfX19lC5dGmPGjFG7vv3796NBgwYwNTWFsbEx3NzcsH79emm5EALjx49H0aJFYW1tjcGDByM1NVWhjJcvX6Jo0aJYs2ZNrraViIgoJ15eXpDJZEqvJk2a5LjumzdvpJhqamoKIyMjVK5cGXPnzkVaWppC3mvXrqFevXowNjZG9erVcfLkSaXyZs2ahQoVKiA9PT3Pto+IiAqf169fY8GCBfD29oadnR2MjY1RtWpVLFq0CBkZGQp55T8eqXqpM8u1vENQ1Ss+Pl7Kx+s+os+Ds7ETAVizZg3Wr1+PatWqwd7ePtu8Fy5cgJeXF4oWLYphw4bB0tIScXFxuH//vlp1hYWFoWfPnmjcuDGmTJkCTU1NREdHK6wfERGBKVOm4KeffoKhoSEmT54MGxsbjBo1SsozefJkODo6onPnzh+30YQ3b95AS4unQSIiVYoVK4bQ0FCFtJxiJPDu3Hr16lU0a9YMjo6O0NDQwIkTJzBkyBD8/fff0sVaRkYG2rRpAwsLC0yfPh1//vknWrVqhdu3b8PExAQA8PjxY0yYMAEbNmzg+fojjR07Fj///HN+N4OIKN/dvXsXAwYMQMOGDTF06FCYmJhg7969+PHHH3Hq1CmEh4crrdOpUyc0a9ZMIc3d3V3tOidMmAAnJyeFNDMzM+lvXvd9GbzuK3z4aRMBmDJlCn7//Xdoa2ujefPmuHLlisp8mZmZ+OGHH1CuXDlERUVBX18/V/XExsYiMDAQAwYMwNy5c7PMt2PHDnTp0gUTJkwA8O7k/Oeff0pB786dO5g7dy6OHDmSq/pJkZ6eXn43gYjoi4qNjYWTkxOioqLg5eWVbV5TU1N07do113VYWFjg1KlTCmn9+vWDqakp5s+fj1mzZsHW1ha3bt1CdHQ07t27hxIlSqBbt24oUqQITp48CR8fHwDA6NGj4eHhAW9v71y3g97R0tLiBR4RFXjqxDdbW1tcvnwZFSpUkNL69u2LHj16ICwsDOPGjUOpUqUU1qlWrdpHxUK5pk2bonr16lku53Xfl8HrvsKHj7HTZ/fgwQP06NEDNjY20NXVRYUKFfDHH39Iy9+8eYNy5cqhXLlyePPmjZT+9OlT2NnZoXbt2tJjBQEBATAyMsLdu3fh4+MDQ0ND2NvbY8KECRBCfHQb7e3toa2tnWO+ffv24cqVKwgODoa+vj5ev36t9MhDdhYvXoyMjAwpmL18+VJlu9+8eQNzc3PpvYWFBV6/fi29HzZsGPz8/LINnO9LSEiAlpYWxo8fr7QsOjoaMpkM8+fPBwCkpaVh/PjxKF26NPT09GBpaYm6desiMjJSrbpev36Nvn37wtLSEiYmJujWrRuePXumkGf79u3w9fWFvb09dHV14ezsjIkTJyrty1u3bqFt27awtbWFnp4eihUrBj8/PyQlJSnkW716Ndzc3KCvrw8LCwv4+fmpdafth2O3yMc1u337NgICAmBmZgZTU1N0795dYf9/ar1EVLB9C3FPXenp6Xj58mWelCUfIub58+cAIG27PN4ZGBhIsRUAzp07h4iICMyaNUvtOoKCgmBkZKTynN2pUyfY2tpK+/bMmTPw8fFBkSJFoK+vDycnJ/To0UPtuvbt24cqVapAT08PLi4u2LJli8Lyp0+fYvjw4XB1dYWRkRFMTEzQtGlTXLx4UamsefPmoUKFCjAwMIC5uTmqV6+u9LhiTsdVVlSN2SmTyRAUFIRt27ahYsWKUnl79uxRWv9j6yWigudbj29FihRR6OiU+/777wEA169fV7neq1evlB4tz40XL15kec3I6753eN1HeY2dnfRZJSQkoFatWti/fz+CgoIwd+5clCpVCj179sScOXMAAPr6+ggPD8ft27cVxr0MDAxEUlISVqxYAU1NTSk9IyMDTZo0gY2NDaZNmwY3NzcEBwcjODj4s2/P/v37AQC6urqoXr06DA0NYWBgAD8/Pzx9+lSt9cuVK4ddu3ahWLFiMDY2hqWlJcaNG4fMzEwpX40aNbB27VqcOnUKly9fxpIlS/Ddd98BACIjI3Hw4EFMmTJF7Xbb2NjA09MTGzZsUFq2fv16aGpqon379gDenfjHjx+P+vXrY/78+RgzZgxKlCiBc+fOqVVXUFAQrl+/jpCQEHTr1g0RERFo3bq1wpeWFStWwMjICEOHDsXcuXPh5uaGX375ReExu9TUVPj4+ODUqVMYMGAAFixYgD59+uDu3bvShTLw7rGObt26oXTp0pg1axYGDx6MAwcOwMPDQyFfbnTo0AEvXrxAaGgoOnTogBUrVih9Yfgc9RLRt68gxb2bN2/C0NAQxsbGsLW1xbhx45TG3MxOamoqnjx5gvv372Pr1q2YMWMGHBwcpLtmypQpA1NTU4SEhODevXuYPn06kpOTUa1aNQDAwIEDERQUpHSXTXY6duyIV69eYefOnQrpr1+/xl9//YV27dpBU1MTjx8/hre3N2JjY/Hzzz9j3rx56NKli9IdqVm5desWOnbsiKZNmyI0NBRaWlpo3769wgXi3bt3sW3bNjRv3hyzZs3CiBEjcPnyZXh6euLhw4dSvt9//x0DBw6Ei4sL5syZg/Hjx6NKlSr4+++/pTzqHFe5dezYMfz444/w8/PDtGnT8PbtW7Rt2xb//fffZ62XiL5NBSm+fUg+hmaRIkWUlo0fPx5GRkbQ09NDjRo1sG/fvlyVXb9+fZiYmMDAwAAtW7bErVu3FJbzuo/XffSZCKLPqGfPnsLOzk48efJEId3Pz0+YmpqK169fS2mjRo0SGhoa4siRI2Ljxo0CgJgzZ47Cev7+/gKAGDBggJSWmZkpfH19hY6OjkhMTPzkNvv6+goHBweVy1q2bCkACEtLS9GlSxexadMmMW7cOKGlpSVq164tMjMzsy3bxMREmJubC11dXTFu3DixadMm0blzZwFA/Pzzz1K+5ORkUbduXQFAABAVKlQQ//77r0hLSxMuLi5i6tSpud6uJUuWCADi8uXLCukuLi6iQYMG0vvKlSsLX1/fXJcfFhYmAAg3NzeRmpoqpU+bNk0AENu3b5fS3v/c5fr27SsMDAzE27dvhRBCnD9/XgAQGzduzLLO2NhYoampKSZPnqyQfvnyZaGlpaWQ7u/vr/S5AhDBwcHS++DgYAFA9OjRQyHf999/LywtLT+qXiIqXL72uBcTEyMAiKioqGzz9ejRQ4SEhIjNmzeLlStXSvGvQ4cOate1du1aKY4BENWrVxeXLl1SyLNmzRqhr68vAAhNTU0xY8YMIYQQERERwsbGRiQlJeVq+zIzM0XRokVF27ZtFdI3bNggAIgjR44IIYTYunWrACBOnz6dq/KFEMLBwUEAEJs3b5bSkpKShJ2dnahataqU9vbtW5GRkaGwbkxMjNDV1RUTJkyQ0lq1aiUqVKiQbZ3qHlfyzzcsLEzKI49t7wMgdHR0xO3bt6W0ixcvCgBi3rx5ua6XiAq+ghLfPpSSkiJcXFyEk5OTSEtLk9Lv3bsnvL29xaJFi8Sff/4p5syZI0qUKCE0NDTEjh07cix3/fr1IiAgQISHh4utW7eKsWPHCgMDA1GkSBERFxcn5eN1H6/76PNgZyd9NpmZmcLMzEz06dNHJCYmKrzkJ8hjx45J+VNSUoSrq6twcnISVlZWwtPTU6nzUB4Uo6OjFdJ3794tAIi1a9d+cruz6+xs0KCBACCaNGmikB4aGioAiMjIyGzL1tDQEACUglaTJk2Evr6+SE5OltIyMjLE1atXxYULF6TAO3fuXOHs7CxSUlLE1atXhZeXl7C3txddunTJ8YIwMTFRaGlpibFjx0pply9fFgDEkiVLpDRPT0/h6Ogobt68mW15H5J/pu+XJYQQL168EFpaWqJv374q10tOThaJiYli9erVAoC4cOGCEEKIu3fvCgCiV69e4tWrVyrXnTVrlpDJZOLWrVtKx1j58uVFo0aNpLy5CXr//POPUj0ApH2cm3qJqPD4GuPeixcvFNpx7tw5AUBs27ZNIf358+c5bl/v3r0FAHHy5Em19kd8fLyIjIwUGzduFP369RPu7u4q13369Kk4efKkiI+PF0II8erVK1GsWDGxbNkykZGRIUJCQoSTk5NwdXUVW7ZsybHewYMHC319ffHixQsprW3btqJo0aLS/o2KipJiwPsXaupwcHAQ9vb2Sp/VTz/9JACIR48eKa2Tnp4unjx5IhITE0WlSpVE69atpWX+/v7C1NRUKfbI5ea4yk1nZ7NmzZTqMjExEUOGDMl1vURUsBXk+CaPbTt37sxxP/z333/CxsZGlC1bNse8qhw9elTIZDKl6yJe9/G6j/IeOzvps0lISFC4o0PV68OLltOnTwsAQk9PT9y9e1epTH9/f6GhoaHwq5sQQty5c0cAEKGhoVm25/nz5+LRo0fS67///lOZL7vOTl9fXwFAhIeHK6Tfu3dPABDjx4/Psn4hhDA0NBQAxL179xTSw8PDBQBx+PDhLNdNTEwU5ubmYuvWrSI1NVU4OTmJAQMGiNOnT4t69eqJbt26ZVu3EEL4+PiIMmXKSO/Hjh0rtLS0FH45PXz4sDAzMxMARMWKFcXw4cPFxYsXcyxbHvQOHjyotKx48eLCx8dHen/lyhXRunVrYWJionRMvL8Phg4dKgAIfX194e3tLebPn6/whaV///7ZHl+VKlWS8uYm6MkvuD/cttjY2FzXS0SFx9cW9+Tr59QmAMLT0zPH7btx44YAICZOnJjzzlBh8uTJwsjISGVn4PvGjh0rqlWrJjIyMsTvv/8ubG1txYEDB8Ty5cuFtra2uHXrVrbrnzx5UgAQERERQoh3F1/6+vpi8ODBUp7MzEzRtm1bAUCYmJiIli1bij/++EO6yyQ7Dg4OwsPDQyl9+fLlCp3BGRkZYtasWaJUqVJCU1NTYX/Xr19fWu/atWuiaNGiAoAoVaqU+PHHHxU6DXJzXOWms7Nfv34qty0gICDX9RJRwVZQ45v8TsTcxLWff/5ZABD3799Xe5331apVSzg7O2ebh9d9vO6jT8epGemzkY9B2bVrV/j7+6vMU6lSJYX3e/fuBQC8ffsWt27dgpOTU561Z9CgQQgPD5fee3p64tChQ7kqw97eHsC7sVDeZ21tDQBKAzKrWv/WrVsftf64ceNQrVo1tG7dGkePHsWjR48wbdo06OnpYfz48WjSpAnCwsKgoZH1ULx+fn7o3r07Lly4gCpVqmDDhg1o2LChwvg0Hh4euHPnDrZv3459+/Zh2bJlmD17NhYvXoxevXplu33qeP78OTw9PWFiYoIJEybA2dkZenp6OHfuHH766SeFsUtnzpyJgIAAqS0DBw5EaGgoTp06hWLFiiEzMxMymQy7d+9WGP9HzsjI6KPaqKosANL4M5+rXiL6tn1tcQ8ARo4cqTCLbEJCArp27YoZM2agcuXKUvr7kyNkpXjx4gCg1hjVqrRr1w5jxozB9u3b0bdvX5V5YmNjMXPmTOzbtw8aGhpYu3Yt+vbtiwYNGgAAwsPDsW7dOowdOzbLemrVqgVHR0ds2LABnTt3xl9//YU3b96gY8eOUh6ZTIZNmzbh1KlT+Ouvv7B371706NEDM2fOxKlTp/LkPD5lyhSMGzcOPXr0wMSJE2FhYQENDQ0MHjxYIdaVL18e0dHR2LFjB/bs2YPNmzdj4cKF+OWXXzB+/PiPOq7UoU6s+xz1EtG3pyDGtxUrVuCnn35Cv379so0pH3o/FhYrVizX7S5evDiio6OzzcPrPl730adjZyd9NlZWVjA2NkZGRgYaNWqUY/5Lly5hwoQJ0km5V69euHz5MkxNTRXyZWZm4u7duyhTpoyUdvPmTQD/m+lVlQ8DojoXdh9yc3PD77//jgcPHiikyycasLKyynH9W7du4cGDByhZsqTa61+8eBF//PEHzp49K+U3NzeHnp4egHedqKmpqUhMTFTqSH1f69at0bdvX6xfvx7Au/02atQopXwWFhbo3r07unfvjpcvX8LDwwMhISFqBb1bt26hfv360vuXL1/i0aNHaNasGQDg0KFD+O+//7BlyxZ4eHhI+WJiYlSW5+rqCldXV4wdOxYnTpxAnTp1sHjxYkyaNAnOzs4QQsDJyUnhePjc8qteIvq6fW1xDwBcXFzg4uIivY+NjQXwLh55eXmpt2H/7+7duwByjnVZkc/M++HMqu8bPnw4WrZsibp16wJ4F+/kPzQC7+LdhzFYlQ4dOmDu3LlITk7G+vXr4ejoiFq1ainlq1WrFmrVqoXJkydjzZo16NKlC9atW5djvLt9+zaEEAqznH/4mWzatAn169fH8uXLFdZ9/vy50iQYhoaG6NixIzp27IjU1FS0adMGkydPxqhRo3J9XOWV/KqXiL4+BS2+bd++Hb169UKbNm2wYMGCHLfnfZ8aC+/evZvturzu43Uf5Q3Oxk6fjaamJtq2bYvNmzfjypUrSssTExOlv9PS0hAQEAB7e3vMnTsXK1asQEJCAoYMGaKy7Pnz50t/CyEwf/58aGtro2HDhlm2x8XFBY0aNZJebm5uud6mVq1aQVdXF2FhYQq/RC1btgwA0LhxYynt0aNHuHHjhsLMtfK7St6/8MnMzERYWBgsLCyybNOgQYPQq1cvVKxYEcC7O0sTExOlu2uuX78OLS0tlTMIvs/MzAw+Pj7YsGED1q1bBx0dHbRu3Vohz/uzsALvfq0qVaoUUlJSsi1bbunSpQrbvGjRIqSnp6Np06YA/vfrmfzXMuDdDHwLFy5UKCc5ORnp6ekKaa6urtDQ0JDa0qZNG2hqamL8+PEK5cnL/3Bb8kp+1UtEX7evLe59rOTkZKVzvhACkyZNAgD4+PhI6a9fv8aNGzfw5MkTKe3JkydK50bgf7GyevXqKuuNiorCrl27MG3aNCnNxsYGN27ckN5fv34dtra2OW5Dx44dkZKSgvDwcOzZswcdOnRQWP7s2TOlNlapUgUA1Ip3Dx8+xNatW6X3ycnJWLlyJapUqSK1T1NTU6mOjRs3KnXWfhgzdHR04OLiAiEE0tLScnVc5aX8qpeIvj4FJb4BwJEjR+Dn5wcPDw9ERERkeXekqnPcgwcP8Mcff6BSpUqws7OT0lVd96laf9euXTh79iyaNGmSZft43fcOr/voU/HOTvqspk6diqioKNSsWRO9e/eGi4sLnj59inPnzmH//v3SSXvSpEm4cOECDhw4AGNjY1SqVAm//PILxo4di3bt2km/DgGAnp4e9uzZA39/f9SsWRO7d+/Gzp07MXr06I/+he3SpUv4888/Aby7WyMpKUm6qKtcuTJatGgBALC1tcWYMWPwyy+/oEmTJmjdujUuXryI33//HZ06dUKNGjWkMkeNGoXw8HDExMRIv0y2atUKDRs2RGhoKJ48eYLKlStj27ZtOHbsGJYsWQJdXV2ltm3cuBGXLl3C5s2bpTR3d3fY2Nigffv2aNOmDWbMmCGdiHPSsWNHdO3aFQsXLoSPjw/MzMwUlru4uMDLywtubm6wsLDAmTNnsGnTJgQFBam1L1NTU9GwYUN06NAB0dHRWLhwIerWrYuWLVsCAGrXrg1zc3P4+/tj4MCBkMlkWLVqlVLwOHjwIIKCgtC+fXuUKVMG6enpWLVqlfRlC3j3S9ukSZMwatQoxMbGonXr1jA2NkZMTAy2bt2KPn36YPjw4Wq1Ozfyq14i+vp9K3EvO+fOnUOnTp3QqVMnlCpVCm/evMHWrVtx/Phx9OnTB9WqVZPy/vPPP6hfvz6Cg4MREhICAFi9ejUWL16M1q1bo2TJknjx4gX27t2LyMhItGjRQnok/X0ZGRkYPHgwRowYgRIlSkjp7dq1w8iRI2FlZYV79+7h8uXLiIiIyHEbqlWrhlKlSmHMmDFISUlReIQdePc4/MKFC/H999/D2dkZL168wO+//w4TExOFfZ+VMmXKoGfPnjh9+jRsbGzwxx9/ICEhAWFhYVKe5s2bS3c21a5dW2r7+092AIC3tzdsbW1Rp04d2NjY4Pr165g/fz58fX1hbGwMQP3jKq/lV71E9PUpCPHt3r17aNmyJWQyGdq1a4eNGzcqLK9UqZL0OP7IkSNx584dNGzYEPb29oiNjcWSJUvw6tUrzJ07V2E9Vdd9tWvXRtWqVVG9enWYmpri3Llz+OOPP1C8eHGMHj1aZft43cfrPspDX2ZoUCrMEhISRGBgoChevLjQ1tYWtra2omHDhmLp0qVCCCHOnj0rtLS0xIABAxTWS09PFzVq1BD29vbi2bNnQoh3gw0bGhqKO3fuCG9vb2FgYCBsbGxEcHCwyMjI+Og2ygciVvXy9/dXyJuZmSnmzZsnypQpI7S1tUXx4sXF2LFjlWZzlQ+aHRMTo5D+4sULMWjQIGFrayt0dHSEq6urWL16tcp2vX79Wjg4OIjffvtNadnp06dFtWrVhLGxsWjRooV4/PixWtuanJws9PX1BQCV9U6aNEl89913wszMTOjr64ty5cqJyZMn5zhbrXwfHj58WPTp00eYm5sLIyMj0aVLF6XJoI4fPy5q1aol9PX1hb29vRg5cqTYu3evACCioqKEEO9m5evRo4dwdnYWenp6wsLCQtSvX1/s379fqe7NmzeLunXrCkNDQ2FoaCjKlSsnAgMDFWZ3zM1A1e8P3P3+tn34WapTLxEVPl9z3JNPYCM/16py9+5d0b59e+Ho6Cj09PSEgYGBcHNzE4sXL1aaTff9Wc3lTp8+Ldq3by9KlCghdHV1haGhoahWrZqYNWuW0kQUcgsWLBDFihVTmoU1LS1NDB06VBQpUkQ4ODgoTRCYnTFjxkiT/nzo3LlzolOnTlIbra2tRfPmzcWZM2dyLNfBwUH4+vqKvXv3ikqVKgldXV1Rrlw5sXHjRoV8b9++FcOGDRN2dnZCX19f1KlTR5w8eVJ4enoqTJixZMkS4eHhISwtLYWurq5wdnYWI0aMUJptN6fjSojcTVAUGBiocts+/N6jTr1EVDh86/FNHrOyer0fy9asWSM8PDyElZWV0NLSEkWKFBHff/+9OHv2rFK5qq77xowZI6pUqSJMTU2Ftra2KFGihOjfv7/ShDhyvO7jdR/lLZkQKp4zIvpKBQQEYNOmTXj58mV+N4WIiOizY9wjIqKCiPGNiD4njtlJREREREREREREBQI7O4mIiIiIiIiIiKhAYGcnERERERERERERFQgcs5OIiIiIiIiIiIgKBN7ZSURERERERERERAWCVn434HPJzMzEw4cPYWxsDJlMlt/NISKiL0gIgRcvXsDe3h4aGgX/dz3GPCKiwosxj4iICgt1Y16B7ex8+PAhihcvnt/NICKifHT//n0UK1Ysv5vx2THmERERYx4RERUWOcW8AtvZaWxsDODdDjAxMcnn1nwdZs6cib/++gu3bt2Cnp4eatasifHjx6N06dJSHl9fXxw7dkxhve7du2POnDnS+5EjR+LUqVO4fv06ypYtq5T/3r17qFSpklL9+/fvR40aNbJs39mzZxESEoKLFy8CANzc3DBhwgS4uroCAG7duoUhQ4bgxo0bSE5Ohq2tLdq3b4+ff/4Z2traud4fRFRwJScno3jx4lIsKOgY84hIFVdXV8TFxSml9+rVCzNnzgQA/PPPP5gwYQLOnj0LTU1NuLq6YsuWLdDX1wcATJ8+Hfv27cPly5eho6Ojsrz79+9j6NChOHr0KAwNDdGpUyeEhIRASyvrS42cyo2IiMCPP/6oct3bt2/DyspK7f1Q0DHmERGpR50+kUGDBuHQoUOIj4+HoaGhlKdMmTJZliuEwJQpUxAeHo6kpCTUrFkTs2fPhrOzs5Tn9u3bGDduHE6dOoW0tDRUqFABY8aMgYeHx2fd5oJG3ZhXYDs75Y80mJiYMAj+v7///hsDBw5EjRo1kJ6ejtGjR6NNmza4du0aDA0NAQCampro3bs3JkyYIK1nYGCgsA91dHTQu3dv/P3337h06ZLS/pUfdPv370eFChWkdEtLyyw7JV++fIl27dqhZcuWWLp0KdLT0xEcHIy2bdvi/v370NbWhrm5Obp3745q1arBzMwMFy9eRO/evaGtrY0pU6bk2X4iooKjsDzexphHRKqcOXMGGRkZ0vsrV66gcePG6NKlC0xMTHDy5Em0bdsWo0aNwqJFi6ClpYWLFy/CzMwMurq6AAANDQ34+fmhbt26WL58udI5JiMjA35+frC1tcWJEyfw6NEjdOvWDUZGRtl+P8up3ICAAHz//fdKaW/fvlW4eKT/YcwjIsqeOn0i7u7u6N69O0qUKIGnT58iJCQEbdq0QUxMDDQ1NVWW++uvv2LJkiUIDw+Hk5MTxo0bh7Zt2+LatWvQ09MDAPj5+aF06dKIioqCvr4+5syZg44dO+LOnTuwtbX9YvugoMgx5okCKikpSQAQSUlJ+d2Ur9bjx48FAHH48GEpzdPTUwwaNEit9YODg0XlypWV0mNiYgQAcf78ebXbcvr0aQFAxMXFSWmXLl0SAMStW7eyXG/IkCGibt26atdDRIVDYYsBhW17iejjDBo0SDg7O4vMzEwhhBA1a9YUY8eOVWvdsLAwYWpqqpS+a9cuoaGhIeLj46W0RYsWCRMTE5GSkvLR5X7o8ePHQltbW6xcuVKt9hYmhS0GFLbtJaLPR1WfyIcuXrwoAIjbt2+rXJ6ZmSlsbW3F9OnTpbTnz58LXV1dsXbtWiGEEImJiQKAOHLkiJQnOTlZABCRkZF5tDWFg7oxoOCPYE1ZSkpKAgBYWFgopEdERKBIkSKoWLEiRo0ahdevX39U+S1btoS1tTXq1q2LP//8M9u8ZcuWhaWlJZYvX47U1FS8efMGy5cvR/ny5eHo6Khyndu3b2PPnj3w9PT8qPYRERERFRapqalYvXo1evToAZlMhsePH+Pvv/+GtbU1ateuDRsbG3h6eioNT5STkydPwtXVFTY2NlKaj48PkpOTcfXq1Txr/8qVK2FgYIB27drlWZlERFS4ZdUnIvfq1SuEhYXByckpy7GCY2JiEB8fj0aNGklppqamqFmzJk6ePAng3VOuZcuWxcqVK/Hq1Sukp6djyZIlsLa2hpubWx5vFQEAOzsLqczMTAwePBh16tRBxYoVpfTOnTtj9erViIqKwqhRo7Bq1Sp07do1V2UbGRlh5syZ2LhxI3bu3Im6deuidevW2XZ4Ghsb49ChQ1i9ejX09fVhZGSEPXv2YPfu3UrjPdWuXRt6enooXbo06tWrp/DIPREREREp27ZtG54/f46AgAAAwN27dwEAISEh6N27N/bs2YNq1aqhYcOGuHXrltrlxsfHK3R0ApDex8fH503jASxfvhydO3eWxhIlIiL6FFn1iQDAwoULYWRkBCMjI+zevRuRkZHQ0dFRWY481qmKhfJlMpkM+/fvx/nz52FsbAw9PT3MmjULe/bsgbm5+WfYOiqwY3ZS9gIDA3HlyhWlX+/79Okj/e3q6go7Ozs0bNgQd+7cUXt8pCJFimDo0KHS+xo1auDhw4eYPn06WrZsqXKdN2/eoGfPnqhTpw7Wrl2LjIwMzJgxA76+vjh9+rTCF9v169fjxYsXuHjxIkaMGIEZM2Zg5MiRudl8IiIiokJl+fLlaNq0Kezt7QG8u8gDgL59+6J79+4AgKpVq+LAgQP4448/EBoamm9t/dDJkydx/fp1rFq1Kr+bQkREBURWfSIA0KVLFzRu3BiPHj3CjBkz0KFDBxw/flwafzO3hBAIDAyEtbU1jh49Cn19fSxbtgwtWrTA6dOnYWdn96mbQx9gZ2chFBQUhB07duDIkSMoVqxYtnlr1qwJ4N0j458yGHzNmjURGRmZ5fI1a9YgNjYWJ0+ehIaGhpRmbm6O7du3w8/PT8orv33cxcUFGRkZ6NOnD4YNG5blYMFEREREhdm9e/ewf/9+bNmyRUqTX1i5uLgo5C1fvrzKGdezYmtri3/++UchLSEhQVqWF5YtW4YqVarwUT8iIsoTOfWJmJqawtTUFKVLl0atWrVgbm6OrVu3olOnTkp55bEuISFBodMyISEBVapUAQAcPHgQO3bswLNnz6SJ1RYuXIjIyEiEh4fj559//gxbWbjxMfZCRAiBoKAgbN26FQcPHoSTk1OO61y4cAEAPvmXhgsXLmRbxuvXr6GhoaEwo5b8vfzOA1UyMzORlpaWbR4iIiKiwiwsLAzW1tbw9fWV0hwdHWFvb4/o6GiFvDdv3oSDg4PaZbu7u+Py5ct4/PixlBYZGQkTExOljtSP8fLlS2zYsAE9e/b85LKIiKhw+5g+ESEEhBBISUlRudzJyQm2trY4cOCAlJacnIy///4b7u7uACDNgyK/sUtOQ0ODfRmfCe/sLEQCAwOxZs0abN++HcbGxtL4EaamptDX18edO3ewZs0aNGvWDJaWlrh06RKGDBkCDw8PVKpUSSrn9u3bePnyJeLj4/HmzRupQ9TFxQU6OjoIDw+Hjo4OqlatCgDYsmUL/vjjDyxbtkwqY+vWrRg1ahRu3LgBAGjcuDFGjBiBwMBADBgwAJmZmZg6dSq0tLRQv359AO8mTtLW1oarqyt0dXVx5swZjBo1Ch07doS2tvaX2IVERERE35TMzEyEhYXB399fYRx0mUyGESNGIDg4GJUrV0aVKlUQHh6OGzduYNOmTVK+uLg4PH36FHFxccjIyJC+95UqVQpGRkbw9vaGi4sLfvjhB0ybNg3x8fEYO3YsAgMDoaurCwD4559/0K1bNxw4cABFixZVq1y59evXIz09PddjyBMREX0opz6Ru3fvYv369fD29oaVlRX+/fdfTJ06Ffr6+mjWrJlUTrly5RAaGorvv/8eMpkMgwcPxqRJk1C6dGk4OTlh3LhxsLe3R+vWrQG8+2HQ3Nwc/v7++OWXX6Cvr4/ff/8dMTExCj9EUh76/BPD5w91p6MvTACofIWFhQkhhIiLixMeHh7CwsJC6OrqilKlSokRI0Yo7UNPT0+V5cTExAghhFixYoUoX768MDAwECYmJuK7774TGzduVCgjLCxMfHj47du3T9SpU0eYmpoKc3Nz0aBBA3Hy5Elp+bp160S1atWEkZGRMDQ0FC4uLmLKlCnizZs3eb+ziOibVthiQGHbXiJS3969ewUAER0drXJ5aGioKFasmDAwMBDu7u7i6NGjCsv9/f1Vfu+LioqS8sTGxoqmTZsKfX19UaRIETFs2DCRlpYmLY+KilL4rqhuuUII4e7uLjp37vzJ+6EgK2wxoLBtLxHlnZz6RB48eCCaNm0qrK2thba2tihWrJjo3LmzuHHjhlI58nWEECIzM1OMGzdO2NjYCF1dXdGwYUOluHv69Gnh7e0tLCwshLGxsahVq5bYtWvX597kAkfdGCATQgh1O0ZDQ0OxZcsW3LhxA/r6+qhduzZ+/fVXlC1bVsrj5eWFw4cPK6zXt29fLF68WHofFxeH/v37IyoqCkZGRvD390doaKjCr82HDh3C0KFDcfXqVRQvXhxjx46VZo9UR3JyMkxNTZGUlCSNiUBERIVDYYsBhW17iYjofwpbDChs20tERP+jbgzI1Zidhw8fRmBgIE6dOoXIyEikpaXB29sbr169UsjXu3dvPHr0SHpNmzZNWpaRkQFfX1+kpqbixIkTCA8Px4oVK/DLL79IeeS38tavXx8XLlzA4MGD0atXL+zduzc3zSUiIiIiIiIiIqJCJFdjdu7Zs0fh/YoVK2BtbY2zZ8/Cw8NDSjcwMMhy9sV9+/bh2rVr2L9/P2xsbFClShVMnDgRP/30E0JCQqCjo4PFixfDyckJM2fOBPBuVshjx45h9uzZ8PHxye02fhLXEHaw0pdzOeTLHt9ERESk7GaAaX43gQqJMiuS8rsJRFTIMebRl/IlY94nzcaelPSuoRYWFgrpERERKFKkCCpWrIhRo0ZJM08BwMmTJ+Hq6gobGxspzcfHB8nJybh69aqUp1GjRgpl+vj44OTJk1m2JSUlBcnJyQovIiIiKpwcHR0hk8mUXoGBgXj69CkGDBiAsmXLQl9fHyVKlMDAgQOl7zUAcPHiRXTq1AnFixeHvr4+ypcvj7lz5yrVk5KSgjFjxsDBwQG6urpwdHTEH3/8kW3b4uLi4OvrCwMDA1hbW2PEiBFIT0+Xlh86dEhl2+WD6BMRERERUdY+ejb2zMxMDB48GHXq1EHFihWl9M6dO8PBwQH29va4dOkSfvrpJ0RHR2PLli0AgPj4eIWOTgDSe/mX+KzyJCcn482bN9DX11dqT2hoKMaPH/+xm0NEREQFyOnTp5GRkSG9v3LlCho3boz27dvj4cOHePjwIWbMmAEXFxfcu3cP/fr1w8OHD6VZqM+ePQtra2usXr0axYsXx4kTJ9CnTx9oamoiKChIKrdDhw5ISEjA8uXLUapUKTx69AiZmZlZtks+nI+trS1OnDiBR48eoVu3btDW1saUKVMU8kZHRyuMRWRtbZ1Xu4eIiIiIqMD66M7OwMBAXLlyBceOHVNI79Onj/S3q6sr7Ozs0LBhQ9y5cwfOzs4f39IcjBo1CkOHDpXeJycno3jx4p+tPiIiIvp6WVlZKbyfOnUqnJ2d4enpCZlMhs2bN0vLnJ2dMXnyZHTt2hXp6enQ0tJCjx49FNYvWbIkTp48iS1btkidnXv27MHhw4dx9+5d6SkXR0fHbNulznA+ctbW1jAzM/uEvUBEREREVPh81GPsQUFB2LFjB6KiolCsWLFs89asWRMAcPv2bQCAra0tEhISFPLI38vH+cwqj4mJicq7OgFAV1cXJiYmCi8iIiKi1NRUrF69Gj169IBMJlOZRz6jo5ZW1r8DJyUlKQzd8+eff6J69eqYNm0aihYtijJlymD48OF48+ZNlmWoM5yPXJUqVWBnZ4fGjRvj+PHj6m4uEREREVGhlqvOTiEEgoKCsHXrVhw8eBBOTk45rnPhwgUAgJ2dHQDA3d0dly9fxuPHj6U8kZGRMDExgYuLi5TnwIEDCuVERkbC3d09N80lIiIiwrZt2/D8+XMEBASoXP7kyRNMnDhR4emUD504cQLr169XyHP37l0cO3YMV65cwdatWzFnzhxs2rQJP/74Y5blqDOcj52dHRYvXozNmzdj8+bNKF68OLy8vHDu3Dl1N5mIiIiIqNDK1WPsgYGBWLNmDbZv3w5jY2PpS7mpqSn09fVx584drFmzBs2aNYOlpSUuXbqEIUOGwMPDA5UqVQIAeHt7w8XFBT/88AOmTZuG+Ph4jB07FoGBgdDV1QUA9OvXD/Pnz8fIkSPRo0cPHDx4EBs2bMDOnTvzePOJiIiooFu+fDmaNm0Ke3t7pWXJycnw9fWFi4sLQkJCVK5/5coVtGrVCsHBwfD29pbSMzMzIZPJEBERAVPTdzOZzpo1C+3atcPChQuzfBolJ2XLlkXZsmWl97Vr18adO3cwe/ZsrFq16qPKJCIiIiIqLHJ1Z+eiRYuQlJQELy8v2NnZSa/169cDAHR0dLB//354e3ujXLlyGDZsGNq2bYu//vpLKkNTUxM7duyApqYm3N3d0bVrV3Tr1g0TJkyQ8jg5OWHnzp2IjIxE5cqVMXPmTCxbtgw+Pj55tNlERERUGNy7dw/79+9Hr169lJa9ePECTZo0gbGxMbZu3QptbW2lPNeuXUPDhg3Rp08fjB07VmGZnZ0dihYtKnV0AkD58uUhhMC///6rsj3qDOejynfffScNCURERERERFnL1Z2dQohslxcvXhyHDx/OsRwHBwfs2rUr2zxeXl44f/58bppHREREpCAsLAzW1tbw9fVVSE9OToaPjw90dXXx559/Qk9PT2ndq1evokGDBvD398fkyZOVltepUwcbN27Ey5cvYWRkBAC4efMmNDQ0shzT3N3dHZMnT8bjx4+l2dU/HM5HlQsXLkhDAhERERERUdY+aoIiIiIioq9dZmYmwsLC4O/vrzDxUHJyMry9vfHq1SssX74cycnJiI+PR3x8PDIyMgC8e3S9fv368Pb2xtChQ6XliYmJUjmdO3eGpaUlunfvjmvXruHIkSMYMWIEevToIT3CvnXrVpQrV05a5/3hfC5evIi9e/cqDeczZ84cbN++Hbdv38aVK1cwePBgHDx4EIGBgV9itxERERERfdNydWcnERER0bdi//79iIuLQ48ePRTSz507h7///hsAUKpUKYVlMTExcHR0xKZNm5CYmIjVq1dj9erV0nIHBwfExsYCAIyMjBAZGYkBAwagevXqsLS0RIcOHTBp0iQpf1JSEqKjo6X38uF8+vfvD3d3dxgaGsLf319hOJ/U1FQMGzYMDx48gIGBASpVqoT9+/ejfv36ebZviIiIiIgKKpnI6dn0b1RycjJMTU2RlJQEExOTjy7HNWRvHraKKHuXQzguLVFeyKsY8K0obNtL9LndDDDNORNRHiizIumTyyhsMaCwbS/R58aYR1/Kl4x5fIydiIiIiIiIiIiICgQ+xk5EREQA+DQDfVl8moGIiIiIPgfe2UlEREREREREREQFAjs7iYiIiIiIiIiIqEBgZycREREREREREREVCOzsJCIiUsHR0REymUzpFRgYCAB4+/YtAgMDYWlpCSMjI7Rt2xYJCQkKZcTFxcHX1xcGBgawtrbGiBEjkJ6erpDn0KFDqFatGnR1dVGqVCmsWLHiS20iERERERFRgcPOTiIiIhVOnz6NR48eSa/IyEgAQPv27QEAQ4YMwV9//YWNGzfi8OHDePjwIdq0aSOtn5GRAV9fX6SmpuLEiRMIDw/HihUr8Msvv0h5YmJi4Ovri/r16+PChQsYPHgwevXqhb17OVEQERERERHRx+Bs7ERERCpYWVkpvJ86dSqcnZ3h6emJpKQkLF++HGvWrEGDBg0AAGFhYShfvjxOnTqFWrVqYd++fbh27Rr2798PGxsbVKlSBRMnTsRPP/2EkJAQ6OjoYPHixXBycsLMmTMBAOXLl8exY8cwe/Zs+PhwpmoiIiIiIqLc4p2dREREOUhNTcXq1avRo0cPyGQynD17FmlpaWjUqJGUp1y5cihRogROnjwJADh58iRcXV1hY2Mj5fHx8UFycjKuXr0q5Xm/DHkeeRlZSUlJQXJyssKLiIiIiIiI2NlJRESUo23btuH58+cICAgAAMTHx0NHRwdmZmYK+WxsbBAfHy/leb+jU75cviy7PMnJyXjz5k2W7QkNDYWpqan0Kl68+KdsHhERERERUYHBzk4iIqIcLF++HE2bNoW9vX1+NwUAMGrUKCQlJUmv+/fv53eTiIiIiIiIvgocs5OIiCgb9+7dw/79+7FlyxYpzdbWFqmpqXj+/LnC3Z0JCQmwtbWV8vzzzz8KZclna38/z4czuCckJMDExAT6+vpZtklXVxe6urqftF1EREREREQFEe/sJCIiykZYWBisra3h6+srpbm5uUFbWxsHDhyQ0qKjoxEXFwd3d3cAgLu7Oy5fvozHjx9LeSIjI2FiYgIXFxcpz/tlyPPIyyAiIiIiIqLcYWcnERFRFjIzMxEWFgZ/f39oaf3vYQhTU1P07NkTQ4cORVRUFM6ePYvu3bvD3d0dtWrVAgB4e3vDxcUFP/zwAy5evIi9e/di7NixCAwMlO7K7NevH+7evYuRI0fixo0bWLhwITZs2IAhQ4bky/YSERERERF96/gYOxERURb279+PuLg49OjRQ2nZ7NmzoaGhgbZt2yIlJQU+Pj5YuHChtFxTUxM7duxA//794e7uDkNDQ/j7+2PChAlSHicnJ+zcuRNDhgzB3LlzUaxYMSxbtgw+Pj5fZPuIiIiIiIgKGnZ2EhERZcHb2xtCCJXL9PT0sGDBAixYsCDL9R0cHLBr165s6/Dy8sL58+c/qZ1ERERERET0Dh9jJyIiIiIiIiIiogKBnZ1ERERERERERERUILCzk4iIiIiIiIiIiAoEdnYSUaESGhqKGjVqwNjYGNbW1mjdujWio6MV8rx9+xaBgYGwtLSEkZER2rZti4SEBIU8Bw4cQO3atWFsbAxbW1v89NNPSE9PV8izd+9e1KpVC8bGxrCyskLbtm0RGxubZdtiY2PRs2dPODk5QV9fH87OzggODkZqaqpCvkuXLqFevXrQ09ND8eLFMW3atE/bKURERER5IK++ZxEREX0KdnYSUaFy+PBhBAYG4tSpU4iMjERaWhq8vb3x6tUrKc+QIUPw119/YePGjTh8+DAePnyINm3aSMsvXryIZs2aoUmTJjh//jzWr1+PP//8Ez///LOUJyYmBq1atUKDBg1w4cIF7N27F0+ePFEo50M3btxAZmYmlixZgqtXr2L27NlYvHgxRo8eLeVJTk6Gt7c3HBwccPbsWUyfPh0hISFYunRpHu8pIiIiotzJi+9ZREREn0omsppm9huXnJwMU1NTJCUlwcTE5KPLcQ3Zm4etIsre5RCf/G5CoZOYmAhra2scPnwYHh4eSEpKgpWVFdasWYN27doBeNcJWb58eZw8eRK1atXC6NGjERkZidOnT0vl/PXXX+jQoQMeP34MY2NjbNq0CZ06dUJKSgo0NDSkPK1atUJKSgq0tbXVat/06dOxaNEi3L17FwCwaNEijBkzBvHx8dDR0QEA/Pzzz9i2bRtu3LiRl7vmm5ZXMeBbwZhH36KvOebdDDDN7yZQIVFmRdInl/E1x7yP+Z71oZSUFKSkpEjvk5OTUbx48a9ye4m+RYx59KV8yZjHOzuJqFBLSnp3wrWwsAAAnD17FmlpaWjUqJGUp1y5cihRogROnjwJ4N2Xbj09PYVy9PX18fbtW5w9exYA4ObmBg0NDYSFhSEjIwNJSUlYtWoVGjVqpHZHp7x98rYBwMmTJ+Hh4SF1dAKAj48PoqOj8ezZs1xuPREREdHn8zHfsz4UGhoKU1NT6VW8ePHP33AiIvqmsbOTiAqtzMxMDB48GHXq1EHFihUBQLpj0szMTCGvjY0N4uPjAbzrXDxx4gTWrl2LjIwMPHjwABMmTAAAPHr0CADg5OSEffv2YfTo0dDV1YWZmRn+/fdfbNiwQe323b59G/PmzUPfvn2ltPj4eNjY2Ci1Tb6MiIiI6Gvwsd+zPjRq1CgkJSVJr/v373/uphMR0TeOnZ1EVGgFBgbiypUrWLduXa7W8/b2xvTp09GvXz/o6uqiTJkyaNasGQBIj6zHx8ejd+/e8Pf3x+nTp3H48GHo6OigXbt2UGf0kAcPHqBJkyZo3749evfunfuNIyIiIspHH/s960O6urowMTFReBEREWWHnZ1EVCgFBQVhx44diIqKQrFixaR0W1tbpKam4vnz5wr5ExISYGtrK70fOnQonj9/jri4ODx58gStWrUCAJQsWRIAsGDBApiammLatGmoWrUqPDw8sHr1ahw4cAB///13tm17+PAh6tevj9q1aytNPGRra6s0Y6n8/fvtIyIiIsovn/o9i4iI6FOws5OIChUhBIKCgrB161YcPHgQTk5OCsvd3Nygra2NAwcOSGnR0dGIi4uDu7u7Ql6ZTAZ7e3vo6+tj7dq1KF68OKpVqwYAeP36tXSXp5ympiaAd491ZeXBgwfw8vKCm5sbwsLClMpwd3fHkSNHkJaWJqVFRkaibNmyMDc3z8WeICIiIspbefk9i4iI6GOxs5OICpXAwECsXr0aa9asgbGxMeLj4xEfH483b94AAExNTdGzZ08MHToUUVFROHv2LLp37w53d3eFGUKnT5+Oy5cv4+rVq5g4cSKmTp2K3377TerQ9PX1xenTpzFhwgTcunUL586dQ/fu3eHg4ICqVasCAP755x+UK1cODx48APC/js4SJUpgxowZSExMlNon17lzZ+jo6KBnz564evUq1q9fj7lz52Lo0KFfahcSERERqZRX37OIiIg+BTs7iahQWbRoEZKSkuDl5QU7OzvptX79einP7Nmz0bx5c7Rt2xYeHh6wtbXFli1bFMrZvXs36tWrh+rVq2Pnzp3Yvn07WrduLS1v0KAB1qxZg23btqFq1apo0qQJdHV1sWfPHujr6wN4d/dndHS0dJdmZGQkbt++jQMHDqBYsWIK7ZMzNTXFvn37EBMTAzc3NwwbNgy//PIL+vTp8xn3GhEREVHO8up7FuW9I0eOoEWLFrC3t4dMJsO2bdsUlr98+RJBQUEoVqwY9PX14eLigsWLF2db5pYtW1C9enWYmZnB0NAQVapUwapVqxTyJCQkICAgAPb29jAwMECTJk1w69atvN48IiIFWvndACKiL0mdyYH09PSwYMECLFiwIMs8Bw8ezLEcPz8/+Pn5Zbncy8tLoT0BAQEICAjIsdxKlSrh6NGjOeYjIiIi+pLy6nsW5b1Xr16hcuXK6NGjB9q0aaO0fOjQoTh48CBWr14NR0dH7Nu3Dz/++CPs7e3RsmVLlWVaWFhgzJgxKFeuHHR0dLBjxw50794d1tbW8PHxgRACrVu3hra2NrZv3w4TExPMmjULjRo1wrVr12BoaPi5N5uICil2dhIREREREREVYE2bNkXTpk2zXH7ixAn4+/vDy8sLANCnTx8sWbIE//zzT5adnfK8coMGDUJ4eDiOHTsGHx8f3Lp1C6dOncKVK1dQoUIFAO/u/rW1tcXatWvRq1evPNk2IqIPsbOTiNRyM8A0v5tAhUSZFUn53QQiIiKiQqV27dr4888/0aNHD9jb2+PQoUO4efMmZs+erdb6QggcPHgQ0dHR+PXXXwEAKSkpAN7dzSunoaEBXV1dHDt2jJ2dRPTZcMxOIiIiIiIiokJs3rx5cHFxQbFixaCjo4MmTZpgwYIF8PDwyHa9pKQkGBkZQUdHB76+vpg3bx4aN24MAChXrhxKlCiBUaNG4dmzZ0hNTcWvv/6Kf//9F48ePfoSm0VEhRTv7CQiIiIiIiIqxObNm4dTp07hzz//hIODA44cOYLAwEDY29ujUaNGWa5nbGyMCxcu4OXLlzhw4ACGDh2KkiVLwsvLC9ra2tiyZQt69uwJCwsLaGpqolGjRmjatKla47sSEX0sdnYSERERERERFVJv3rzB6NGjsXXrVvj6+gJ4NyHmhQsXMGPGjGw7OzU0NFCqVCkAQJUqVXD9+nWEhoZK43m6ubnhwoULSEpKQmpqKqysrFCzZk1Ur179s28XERVefIydiIiIiIiIqJBKS0tDWloaNDQUuwc0NTWRmZmZq7IyMzOlsTrfZ2pqCisrK9y6dQtnzpxBq1atPqnNRETZ4Z2dRERERERERAXYy5cvcfv2bel9TEwMLly4AAsLC5QoUQKenp4YMWIE9PX14eDggMOHD2PlypWYNWuWtE63bt1QtGhRhIaGAgBCQ0NRvXp1ODs7IyUlBbt27cKqVauwaNEiaZ2NGzfCysoKJUqUwOXLlzFo0CC0bt0a3t7eX27jiajQydWdnaGhoahRowaMjY1hbW2N1q1bIzo6WiHP27dvERgYCEtLSxgZGaFt27ZISEhQyBMXFwdfX18YGBjA2toaI0aMQHp6ukKeQ4cOoVq1atDV1UWpUqWwYsWKj9tCIiIiIiIiokLszJkzqFq1KqpWrQoAGDp0KKpWrYpffvkFALBu3TrUqFEDXbp0gYuLC6ZOnYrJkyejX79+UhlxcXEKEwu9evUKP/74IypUqIA6depg8+bNWL16tcIs648ePcIPP/yAcuXKYeDAgfjhhx+wdu3aL7TVRFRY5erOzsOHDyMwMBA1atRAeno6Ro8eDW9vb1y7dg2GhoYAgCFDhmDnzp3YuHEjTE1NERQUhDZt2uD48eMAgIyMDPj6+sLW1hYnTpzAo0eP0K1bN2hra2PKlCkA3v3K5Ovri379+iEiIgIHDhxAr169YGdnBx8fnzzeBUREREREREQFl5eXV7aTAtna2iIsLCzbMg4dOqTwftKkSZg0aVK26wwcOBADBw5Uu51ERHkhV3d27tmzBwEBAahQoQIqV66MFStWIC4uDmfPngUAJCUlYfny5Zg1axYaNGgANzc3hIWF4cSJEzh16hQAYN++fbh27RpWr16NKlWqoGnTppg4cSIWLFiA1NRUAMDixYvh5OSEmTNnonz58ggKCkK7du0we/bsPN58IiKirD148ABdu3aFpaUl9PX14erqijNnzkjLhRD45ZdfYGdnB319fTRq1Ai3bt1SKOPp06fo0qULTExMYGZmhp49e+Lly5cKeS5duoR69epBT08PxYsXx7Rp077I9hERERERERU0nzRmZ1JSEgDAwsICAHD27FmkpaUpzNZWrlw5lChRAidPnkStWrVw8uRJuLq6wsbGRsrj4+OD/v374+rVq6hatSpOnjypNOObj48PBg8enGVbUlJSFAZCTk5O/pRNIyKiQu7Zs2eoU6cO6tevj927d0uD6pubm0t5pk2bht9++w3h4eFwcnLCuHHj4OPjg2vXrkFPTw8A0KVLFzx69AiRkZFIS0tD9+7d0adPH6xZswbAu3jl7e2NRo0aYfHixbh8+TJ69OgBMzMz9OnTJ1+2nYiIqKBzDdmb302gQuRyCJ9QJfqSPrqzMzMzE4MHD0adOnVQsWJFAEB8fDx0dHRgZmamkNfGxgbx8fFSnvc7OuXL5cuyy5OcnIw3b95AX19fqT2hoaEYP378x24OERGRgl9//RXFixdXeKTLyclJ+lsIgTlz5mDs2LHSjKIrV66EjY0Ntm3bBj8/P1y/fh179uzB6dOnUb16dQDAvHnz0KxZM8yYMQP29vaIiIhAamoq/vjjD+jo6KBChQq4cOECZs2alWVnJ3/gIyIiIiIiUi1Xj7G/LzAwEFeuXMG6devysj0fbdSoUUhKSpJe9+/fz+8mERHRN+zPP/9E9erV0b59e1hbW6Nq1ar4/fffpeUxMTGIj49XeBLB1NQUNWvWxMmTJwEAJ0+ehJmZmdTRCQCNGjWChoYG/v77bymPh4cHdHR0pDw+Pj6Ijo7Gs2fPVLYtNDQUpqam0qt48eJ5uu1ERERERETfqo/q7AwKCsKOHTsQFRWFYsWKSem2trZITU3F8+fPFfInJCTA1tZWyvPh7Ozy9znlMTExUXlXJwDo6urCxMRE4UVERPSx7t69i0WLFqF06dLYu3cv+vfvj4EDByI8PBzA/55GUPUkwvtPKlhbWyss19LSgoWFRa6eePgQf+AjIiIiIiJSLVednUIIBAUFYevWrTh48KDC43wA4ObmBm1tbRw4cEBKi46ORlxcHNzd3QEA7u7uuHz5Mh4/fizliYyMhImJCVxcXKQ875chzyMvg4iI6HPLzMxEtWrVMGXKFFStWhV9+vRB7969sXjx4vxuGn/gIyIiIiIiykKuOjsDAwOxevVqrFmzBsbGxoiPj0d8fDzevHkD4N3jez179sTQoUMRFRWFs2fPonv37nB3d0etWrUAAN7e3nBxccEPP/yAixcvYu/evRg7diwCAwOhq6sLAOjXrx/u3r2LkSNH4saNG1i4cCE2bNiAIUOG5PHmExERqWZnZyf9CCdXvnx5xMXFAfjf0wiqnkR4/0mF93/cA4D09HQ8ffo0V088EBERERERkXpy1dm5aNEiJCUlwcvLC3Z2dtJr/fr1Up7Zs2ejefPmaNu2LTw8PGBra4stW7ZIyzU1NbFjxw5oamrC3d0dXbt2Rbdu3TBhwgQpj5OTE3bu3InIyEhUrlwZM2fOxLJly+DjwxnMiIjoy6hTpw6io6MV0m7evAkHBwcA72KVra2twpMIycnJ+PvvvxWeZnj+/DnOnj0r5Tl48CAyMzNRs2ZNKc+RI0eQlpYm5YmMjETZsmUVZn4nIiIiIiKinOVqNnYhRI559PT0sGDBAixYsCDLPA4ODti1a1e25Xh5eeH8+fO5aR4REVGeGTJkCGrXro0pU6agQ4cO+Oeff7B06VIsXboUACCTyTB48GBMmjQJpUuXhpOTE8aNGwd7e3u0bt0awLs7QZs0aSI9/p6WloagoCD4+fnB3t4eANC5c2eMHz8ePXv2xE8//YQrV65g7ty5mD17dn5tOhERERER0TcrV52dREREhUWNGjWwdetWjBo1ChMmTICTkxPmzJmDLl26SHlGjhyJV69eoU+fPnj+/Dnq1q2LPXv2QE9PT8oTERGBoKAgNGzYEBoaGmjbti1+++03abmpqSn27duHwMBAuLm5oUiRIvjll1/Qp0+fL7q9REREREREBQE7O4mIiLLQvHlzNG/ePMvlMpkMEyZMUBiK5UMWFhZYs2ZNtvVUqlQJR48e/eh2EhERERER0Tu5GrOTiIiIiIiIiIiI6GvFzk4iIiIiIiIiIiIqENjZSURERERERERERAUCOzuJiIiIiIiIiIioQGBnJxERERERERERERUI7OwkIiIiIiIiIiKiAoGdnURERERERERERFQgsLOTiIiIiIiIiIiICgR2dhIREREREREREVGBwM5OIiIiIiIiIiIiKhDY2UlEREREREREREQFAjs7iYiIiIiIiIiIqEBgZycREREREREREREVCOzsJCIiIiIiIiIiogKBnZ1ERERERERERERUILCzk4iIiIiIiIiIiAoEdnYSERERERERERFRgcDOTiIiIiIiIiIiIioQ2NlJREREREREREREBQI7O4mIiIiIiIiIiKhAYGcnERERERERERERFQjs7CQiIiIiIiIiIqICgZ2dREREREREREREVCCws5OIiEiFkJAQyGQyhVe5cuWk5W/fvkVgYCAsLS1hZGSEtm3bIiEhQaGMuLg4+Pr6wsDAANbW1hgxYgTS09MV8hw6dAjVqlWDrq4uSpUqhRUrVnyJzSMiIiIiIiqQ2NlJRESUhQoVKuDRo0fS69ixY9KyIUOG4K+//sLGjRtx+PBhPHz4EG3atJGWZ2RkwNfXF6mpqThx4gTCw8OxYsUK/PLLL1KemJgY+Pr6on79+rhw4QIGDx6MXr16Ye/evV90O4mIiIiIiAoKdnYSERFlQUtLC7a2ttKrSJEiAICkpCQsX74cs2bNQoMGDeDm5oawsDCcOHECp06dAgDs27cP165dw+rVq1GlShU0bdoUEydOxIIFC5CamgoAWLx4MZycnDBz5kyUL18eQUFBaNeuHWbPnp1tu1JSUpCcnKzwIiIiym9HjhxBixYtYG9vD5lMhm3btiksDwgIUHpqokmTJvnTWCIiKrDY2UlERJSFW7duwd7eHiVLlkSXLl0QFxcHADh79izS0tLQqFEjKW+5cuVQokQJnDx5EgBw8uRJuLq6wsbGRsrj4+OD5ORkXL16VcrzfhnyPPIyshIaGgpTU1PpVbx48TzZXiIiok/x6tUrVK5cGQsWLMgyT5MmTRSemli7du0XbCERERUGWvndACIioq9RzZo1sWLFCpQtWxaPHj3C+PHjUa9ePVy5cgXx8fHQ0dGBmZmZwjo2NjaIj48HAMTHxyt0dMqXy5dllyc5ORlv3ryBvr6+yraNGjUKQ4cOld4nJyezw5OIiPJd06ZN0bRp02zz6OrqwtbWVu0yU1JSkJKSIr3n0wxERJQTdnYSERGp8P7FWqVKlVCzZk04ODhgw4YNWXZCfim6urrQ1dXN1zYQERF9jEOHDsHa2hrm5uZo0KABJk2aBEtLyyzzh4aGYvz48V+whURE9K3jY+xERERqMDMzQ5kyZXD79m3Y2toiNTUVz58/V8iTkJAg3a1ia2urNDu7/H1OeUxMTPK9Q5WIiCivNWnSBCtXrsSBAwfw66+/4vDhw2jatCkyMjKyXGfUqFFISkqSXvfv3/+CLSYiom8ROzuJiIjU8PLlS9y5cwd2dnZwc3ODtrY2Dhw4IC2Pjo5GXFwc3N3dAQDu7u64fPkyHj9+LOWJjIyEiYkJXFxcpDzvlyHPIy+DiIioIPHz80PLli3h6uqK1q1bY8eOHTh9+jQOHTqU5Tq6urowMTFReBEREWWHnZ1EREQqDB8+HIcPH0ZsbCxOnDiB77//HpqamujUqRNMTU3Rs2dPDB06FFFRUTh79iy6d+8Od3d31KpVCwDg7e0NFxcX/PDDD7h48SL27t2LsWPHIjAwUHoEvV+/frh79y5GjhyJGzduYOHChdiwYQOGDBmSn5tORET0RZQsWRJFihTB7du387spRERUgHDMTiIiIhX+/fdfdOrUCf/99x+srKxQt25dnDp1ClZWVgCA2bNnQ0NDA23btkVKSgp8fHywcOFCaX1NTU3s2LED/fv3h7u7OwwNDeHv748JEyZIeZycnLBz504MGTIEc+fORbFixbBs2TL4+Ph88e0lIiL60v799//au/+gqut8j+MvBM8Bf3AIlXNkRWKvpdCGJt7Vc2+5qOSRWFdv3N1rUVJRjl7spmzaMmPkanfxmj9SI71tGrZXV21nc0tMJVzFTfxFUUblZksXmzo4V4UTbBxUzv2j4TueAtMEDn55PmY+M36/n/f3+31/ZjzzHt9+f3ymM2fOaODAgYFOBQBgIjQ7AQBoxZYtWy47HxoaqoKCAhUUFLQZExsbq507d172PMnJyXrnnXe+V44AAHQl9fX1fndpVlVVqaKiQpGRkYqMjNSvf/1rpaeny+Fw6JNPPtH8+fM1ZMgQ/pMPANCuaHYCAAAAAK7ZsWPHNG7cOGM7JydHkpSZmam1a9fqvffe08aNG1VbW6vo6GhNnDhRixcvNl7vAgBAe6DZCQAAAAC4ZsnJyfL5fG3O7969uxOzAQB0V3ygCAAAAAAAAIAp0OwEAAAAAAAAYApX3ewsLS3V5MmTFR0draCgIG3fvt1v/oEHHlBQUJDfmDRpkl/M2bNnlZGRofDwcEVERCgrK0v19fV+Me+9957uuOMOhYaGKiYmRkuXLr361QEAAAAAAADoNq662dnQ0KDhw4df9uuzkyZN0hdffGGM3//+937zGRkZqqysVHFxsXbs2KHS0lLNmDHDmPd4PJo4caJiY2NVXl6uZ555RgsXLtQLL7xwtekCAAAAAAAA6Cau+gNFqampSk1NvWyM1WqVw+Fode7DDz/Url27dPToUY0aNUqStGbNGt11111atmyZoqOjtWnTJjU1NWnDhg2yWCy65ZZbVFFRoRUrVvg1RQEAAAAAAACgRYe8s3Pfvn2KiorS0KFDNWvWLJ05c8aYKysrU0REhNHolKSUlBT16NFDhw8fNmLGjh0ri8VixLhcLp04cULnzp1r9Zper1cej8dvAAAAAAAAAOg+2r3ZOWnSJL388ssqKSnRf/3Xf2n//v1KTU3VxYsXJUlut1tRUVF+x4SEhCgyMlJut9uIsdvtfjEt2y0x35Sfny+bzWaMmJiY9l4aAAAAAAAAgC7sqh9j/y7Tpk0z/nzrrbcqMTFR//AP/6B9+/ZpwoQJ7X05Q25urnJycoxtj8dDwxMAAAAAAADoRjrkMfZL/fCHP1T//v118uRJSZLD4dDp06f9Yi5cuKCzZ88a7/l0OByqqanxi2nZbutdoFarVeHh4X4DAAAAAAAAQPfR4c3Ozz77TGfOnNHAgQMlSU6nU7W1tSovLzdi9u7dq+bmZo0ePdqIKS0t1fnz542Y4uJiDR06VDfccENHpwwAAAAAAADgOnTVzc76+npVVFSooqJCklRVVaWKigpVV1ervr5e8+bN06FDh/Tpp5+qpKREU6ZM0ZAhQ+RyuSRJ8fHxmjRpkh555BEdOXJEb731lmbPnq1p06YpOjpaknTvvffKYrEoKytLlZWV2rp1q1atWuX3mDoAAAAAAAAAXOqqm53Hjh3Tbbfdpttuu02SlJOTo9tuu015eXkKDg7We++9p5/97Ge6+eablZWVpaSkJB04cEBWq9U4x6ZNmzRs2DBNmDBBd911l26//Xa98MILxrzNZtOePXtUVVWlpKQk/fKXv1ReXp5mzJjRDksGAAAAAAAAYEZX/YGi5ORk+Xy+Nud37979neeIjIzU5s2bLxuTmJioAwcOXG16AAAAAAAAALqpDn9nJwAAAAAAAAB0BpqdAAAAAAAAAEyBZicAAAAAAAAAU6DZCQAAAAAAAMAUaHYCAAAAAAAAMAWanQAAAAAAAABMgWYnAAAAAAAAAFOg2QkAAAAAAADAFGh2AgBwBZYsWaKgoCDNmTPH2NfY2Kjs7Gz169dPffr0UXp6umpqavyOq66uVlpamnr16qWoqCjNmzdPFy5c8IvZt2+fRo4cKavVqiFDhqiwsLATVgQAAAAA5kOzEwCA73D06FH993//txITE/32z507V6+//rpeeeUV7d+/X59//rnuvvtuY/7ixYtKS0tTU1OTDh48qI0bN6qwsFB5eXlGTFVVldLS0jRu3DhVVFRozpw5evjhh7V79+5OWx8AAAAAmAXNTgAALqO+vl4ZGRn67W9/qxtuuMHYX1dXp/Xr12vFihUaP368kpKS9NJLL+ngwYM6dOiQJGnPnj364IMP9D//8z8aMWKEUlNTtXjxYhUUFKipqUmStG7dOsXFxWn58uWKj4/X7Nmz9a//+q9auXJlmzl5vV55PB6/AQAAAACg2QkAwGVlZ2crLS1NKSkpfvvLy8t1/vx5v/3Dhg3T4MGDVVZWJkkqKyvTrbfeKrvdbsS4XC55PB5VVlYaMd88t8vlMs7Rmvz8fNlsNmPExMRc8zoBAAAAwAxodgIA0IYtW7bo7bffVn5+/rfm3G63LBaLIiIi/Pbb7Xa53W4j5tJGZ8t8y9zlYjwej7766qtW88rNzVVdXZ0xTp069b3WBwAAAABmExLoBAAA6IpOnTqlxx57TMXFxQoNDQ10On6sVqusVmug0wAAAACALoc7OwEAaEV5eblOnz6tkSNHKiQkRCEhIdq/f79Wr16tkJAQ2e12NTU1qba21u+4mpoaORwOSZLD4fjW19lbtr8rJjw8XGFhYR20OgAAAAAwJ5qdAAC0YsKECTp+/LgqKiqMMWrUKGVkZBh/7tmzp0pKSoxjTpw4oerqajmdTkmS0+nU8ePHdfr0aSOmuLhY4eHhSkhIMGIuPUdLTMs5AAAAAABXjsfYAQBoRd++ffWjH/3Ib1/v3r3Vr18/Y39WVpZycnIUGRmp8PBwPfroo3I6nRozZowkaeLEiUpISND999+vpUuXyu12a8GCBcrOzjYeQ585c6aee+45zZ8/Xw899JD27t2rbdu2qaioqHMXDAAAAAAmQLMTAIDvaeXKlerRo4fS09Pl9Xrlcrn0/PPPG/PBwcHasWOHZs2aJafTqd69eyszM1OLFi0yYuLi4lRUVKS5c+dq1apVGjRokF588UW5XK5ALAkAAAAArms0OwEAuEL79u3z2w4NDVVBQYEKCgraPCY2NlY7d+687HmTk5P1zjvvtEeKAAAAANCt8c5OAAAAAAAAAKZAsxMAAAAAAACAKdDsBAAAAAAAAGAKNDsBAAAAAAAAmALNTgAAAAAAAACmQLMTAAAAAAAAgCnQ7AQAAAAAAABgCjQ7AQAAAAAAAJgCzU4AAAAAAAAApkCzEwAAAAAAAIAp0OwEAAAAAAAAYAo0OwEAAAAAAACYAs1OAAAAAMA1Ky0t1eTJkxUdHa2goCBt377db97n8ykvL08DBw5UWFiYUlJS9PHHHwcmWQCAadHsBAAAAABcs4aGBg0fPlwFBQWtzi9dulSrV6/WunXrdPjwYfXu3Vsul0uNjY2dnCkAwMxCAp0AAAAAAOD6l5qaqtTU1FbnfD6fnn32WS1YsEBTpkyRJL388suy2+3avn27pk2b1pmpAgBMjDs7AQAAAAAdqqqqSm63WykpKcY+m82m0aNHq6ysrM3jvF6vPB6P3wAA4HJodgIAAAAAOpTb7ZYk2e12v/12u92Ya01+fr5sNpsxYmJiOjRPAMD1j2YnAAAAAKBLys3NVV1dnTFOnToV6JQAAF0czU4AAAAAQIdyOBySpJqaGr/9NTU1xlxrrFarwsPD/QYAAJdDsxMAAAAA0KHi4uLkcDhUUlJi7PN4PDp8+LCcTmcAMwMAmA1fYwcAAAAAXLP6+nqdPHnS2K6qqlJFRYUiIyM1ePBgzZkzR08//bRuuukmxcXF6cknn1R0dLSmTp0auKQBAKZDsxMAAAAAcM2OHTumcePGGds5OTmSpMzMTBUWFmr+/PlqaGjQjBkzVFtbq9tvv127du1SaGhooFIGAJjQVT/GXlpaqsmTJys6OlpBQUHavn2737zP51NeXp4GDhyosLAwpaSk6OOPP/aLOXv2rDIyMhQeHq6IiAhlZWWpvr7eL+a9997THXfcodDQUMXExGjp0qVXvzoAAL6ntWvXKjEx0Xg/mNPp1BtvvGHMNzY2Kjs7W/369VOfPn2Unp7+rfeQVVdXKy0tTb169VJUVJTmzZunCxcu+MXs27dPI0eOlNVq1ZAhQ1RYWNgZywMAoN0lJyfL5/N9a7TUtqCgIC1atEhut1uNjY168803dfPNNwc2aQCA6Vx1s7OhoUHDhw9XQUFBq/NLly7V6tWrtW7dOh0+fFi9e/eWy+VSY2OjEZORkaHKykoVFxdrx44dKi0t1YwZM4x5j8ejiRMnKjY2VuXl5XrmmWe0cOFCvfDCC99jiQAAXL1BgwZpyZIlKi8v17FjxzR+/HhNmTJFlZWVkqS5c+fq9ddf1yuvvKL9+/fr888/1913320cf/HiRaWlpampqUkHDx7Uxo0bVVhYqLy8PCOmqqpKaWlpGjdunCoqKjRnzhw9/PDD2r17d6evFwAAAADM4KofY09NTVVqamqrcz6fT88++6wWLFigKVOmSJJefvll2e12bd++XdOmTdOHH36oXbt26ejRoxo1apQkac2aNbrrrru0bNkyRUdHa9OmTWpqatKGDRtksVh0yy23qKKiQitWrPBril7K6/XK6/Ua2x6P52qXBgCAYfLkyX7b//mf/6m1a9fq0KFDGjRokNavX6/Nmzdr/PjxkqSXXnpJ8fHxOnTokMaMGaM9e/bogw8+0Jtvvim73a4RI0Zo8eLFeuKJJ7Rw4UJZLBatW7dOcXFxWr58uSQpPj5ef/nLX7Ry5Uq5XK5OXzMAAAAAXO/a9WvsVVVVcrvdSklJMfbZbDaNHj1aZWVlkqSysjJFREQYjU5JSklJUY8ePXT48GEjZuzYsbJYLEaMy+XSiRMndO7cuVavnZ+fL5vNZoyYmJj2XBoAoBu7ePGitmzZooaGBjmdTpWXl+v8+fN+9W7YsGEaPHiwX7279dZbZbfbjRiXyyWPx2PcHVpWVuZ3jpaYlnO0xev1yuPx+A0AAAAAQDs3O91utyT5/cOuZbtlzu12Kyoqym8+JCREkZGRfjGtnePSa3xTbm6u6urqjHHq1KlrXxAAoFs7fvy4+vTpI6vVqpkzZ+rVV19VQkKC3G63LBaLIiIi/OK/We++q5a1FePxePTVV1+1mRf/wQcAAAAArTPN19itVqusVmug0wAAmMjQoUNVUVGhuro6/eEPf1BmZqb2798f6LSUm5trfOFW+vrVLTQ8AQAAAKCdm50Oh0OSVFNTo4EDBxr7a2pqNGLECCPm9OnTfsdduHBBZ8+eNY53OBzf+qJty3ZLDAAAHc1isWjIkCGSpKSkJB09elSrVq3Sv/3bv6mpqUm1tbV+d3fW1NT41bIjR474ne+btaytehceHq6wsLA28+I/+AAAAACgde36GHtcXJwcDodKSkqMfR6PR4cPH5bT6ZQkOZ1O1dbWqry83IjZu3evmpubNXr0aCOmtLRU58+fN2KKi4s1dOhQ3XDDDe2ZMgAAV6y5uVler1dJSUnq2bOnX707ceKEqqur/erd8ePH/f6Dr7i4WOHh4UpISDBiLj1HS0zLOQAAAAAAV+eqm5319fWqqKhQRUWFpK8/SlRRUaHq6moFBQVpzpw5evrpp/Xaa6/p+PHjmj59uqKjozV16lRJX39pdtKkSXrkkUd05MgRvfXWW5o9e7amTZum6OhoSdK9994ri8WirKwsVVZWauvWrVq1apXfI3sAAHSk3NxclZaW6tNPP9Xx48eVm5urffv2KSMjQzabTVlZWcrJydGf//xnlZeX68EHH5TT6dSYMWMkSRMnTlRCQoLuv/9+vfvuu9q9e7cWLFig7Oxs467MmTNn6m9/+5vmz5+vjz76SM8//7y2bdumuXPnBnLpAAAAAHDduurH2I8dO6Zx48YZ2y0NyMzMTBUWFmr+/PlqaGjQjBkzVFtbq9tvv127du1SaGioccymTZs0e/ZsTZgwQT169FB6erpWr15tzNtsNu3Zs0fZ2dlKSkpS//79lZeXpxkzZlzLWgEAuGKnT5/W9OnT9cUXX8hmsykxMVG7d+/WnXfeKUlauXKlUcO8Xq9cLpeef/554/jg4GDt2LFDs2bNktPpVO/evZWZmalFixYZMXFxcSoqKtLcuXO1atUqDRo0SC+++KJcLlenrxcAAAAAzOCqm53Jycny+XxtzgcFBWnRokV+/5j7psjISG3evPmy10lMTNSBAweuNj0AANrF+vXrLzsfGhqqgoICFRQUtBkTGxurnTt3XvY8ycnJeuedd75XjgAAAAAAf+36zk4AAAAAAAAACBSanQAAAAAAAABMgWYnAAAAAAAAAFOg2QkAAAAAAADAFGh2AgAAAAAAADAFmp0AAAAAAAAATIFmJwAAAAAAAABToNkJAAAAAAAAwBRodgIAAAAAAAAwBZqdAAAAAAAAAEyBZicAAAAAAAAAU6DZCQAAAAAAAMAUaHYCAAAAAAAAMAWanQAAAAAAAABMgWYnAAAAAAAAAFOg2QkAAAAAAADAFGh2AgAAAAAAADAFmp0AAAAAAAAATIFmJwAAAAAAAABToNkJAAAAAAAAwBRodgIAAAAAAAAwBZqdAAAAAAAAAEyBZicAAAAAAAAAU6DZCQBAK/Lz8/WP//iP6tu3r6KiojR16lSdOHHCL6axsVHZ2dnq16+f+vTpo/T0dNXU1PjFVFdXKy0tTb169VJUVJTmzZunCxcu+MXs27dPI0eOlNVq1ZAhQ1RYWNjRywMAAAAAU6LZCQBAK/bv36/s7GwdOnRIxcXFOn/+vCZOnKiGhgYjZu7cuXr99df1yiuvaP/+/fr888919913G/MXL15UWlqampqadPDgQW3cuFGFhYXKy8szYqqqqpSWlqZx48apoqJCc+bM0cMPP6zdu3d36noBAAAAwAxCAp0AAABd0a5du/y2CwsLFRUVpfLyco0dO1Z1dXVav369Nm/erPHjx0uSXnrpJcXHx+vQoUMaM2aM9uzZow8++EBvvvmm7Ha7RowYocWLF+uJJ57QwoULZbFYtG7dOsXFxWn58uWSpPj4eP3lL3/RypUr5XK5On3dAAAAAHA9485OAACuQF1dnSQpMjJSklReXq7z588rJSXFiBk2bJgGDx6ssrIySVJZWZluvfVW2e12I8blcsnj8aiystKIufQcLTEt52iN1+uVx+PxGwAAAAAAmp0AAHyn5uZmzZkzR//8z/+sH/3oR5Ikt9sti8WiiIgIv1i73S63223EXNrobJlvmbtcjMfj0VdffdVqPvn5+bLZbMaIiYm55jUCAAAAgBnQ7AQA4DtkZ2fr/fff15YtWwKdiiQpNzdXdXV1xjh16lSgUwIAAACALoF3dgIAcBmzZ8/Wjh07VFpaqkGDBhn7HQ6HmpqaVFtb63d3Z01NjRwOhxFz5MgRv/O1fK390phvfsG9pqZG4eHhCgsLazUnq9Uqq9V6zWsDAAAAALPhzk4AAFrh8/k0e/Zsvfrqq9q7d6/i4uL85pOSktSzZ0+VlJQY+06cOKHq6mo5nU5JktPp1PHjx3X69Gkjpri4WOHh4UpISDBiLj1HS0zLOQAAAAAAV447OwEAaEV2drY2b96sP/3pT+rbt6/xjk2bzaawsDDZbDZlZWUpJydHkZGRCg8P16OPPiqn06kxY8ZIkiZOnKiEhATdf//9Wrp0qdxutxYsWKDs7GzjzsyZM2fqueee0/z58/XQQw9p79692rZtm4qKigK2dgAAAAC4XnFnJwAArVi7dq3q6uqUnJysgQMHGmPr1q1GzMqVK/XTn/5U6enpGjt2rBwOh/74xz8a88HBwdqxY4eCg4PldDp13333afr06Vq0aJERExcXp6KiIhUXF2v48OFavny5XnzxRblcrk5dLwAAAACYAXd2AgDQCp/P950xoaGhKigoUEFBQZsxsbGx2rlz52XPk5ycrHfeeeeqcwQAAAAA+OPOTgAAAAAAAACmQLMTAAAAANDhFi5cqKCgIL8xbNiwQKcFADAZHmMHAAAAAHSKW265RW+++aaxHRLCP0kBAO2LygIAAAAA6BQhISFyOByBTgMAYGI8xg4AAAAA6BQff/yxoqOj9cMf/lAZGRmqrq6+bLzX65XH4/EbAABcDs1OAAAAAECHGz16tAoLC7Vr1y6tXbtWVVVVuuOOO/Tll1+2eUx+fr5sNpsxYmJiOjFjAMD1qN2bnd/10unGxkZlZ2erX79+6tOnj9LT01VTU+N3jurqaqWlpalXr16KiorSvHnzdOHChfZOFQAAAADQSVJTU/Xzn/9ciYmJcrlc2rlzp2pra7Vt27Y2j8nNzVVdXZ0xTp061YkZAwCuRx3yzs7LvXR67ty5Kioq0iuvvCKbzabZs2fr7rvv1ltvvSVJunjxotLS0uRwOHTw4EF98cUXmj59unr27Knf/OY3HZEuAAAAAKCTRURE6Oabb9bJkyfbjLFarbJarZ2YFQDgetchzc62XjpdV1en9evXa/PmzRo/frwk6aWXXlJ8fLwOHTqkMWPGaM+ePfrggw/05ptvym63a8SIEVq8eLGeeOIJLVy4UBaLpdVrer1eeb1eY5t3uQAAAABA11VfX69PPvlE999/f6BTAQCYSIe8s7Otl06Xl5fr/PnzSklJMWKHDRumwYMHq6ysTJJUVlamW2+9VXa73YhxuVzyeDyqrKxs85q8ywUAAAAAuq7HH39c+/fv16effqqDBw/qX/7lXxQcHKx77rkn0KkBAEyk3Zudl3vptNvtlsViUUREhN8xdrtdbrdbkuR2u/0anS3zLXNt4V0uAAAAANB1ffbZZ7rnnns0dOhQ/eIXv1C/fv106NAhDRgwINCpAQBMpN0fY09NTTX+nJiYqNGjRys2Nlbbtm1TWFhYe1/OwLtcAAAAAKDr2rJlS6BTAAB0Ax3yGPulLn3ptMPhUFNTk2pra/1iampqjHd8OhyOb32dvWW7tfeAAgAAAAAAAIDUCc3OlpdODxw4UElJSerZs6dKSkqM+RMnTqi6ulpOp1OS5HQ6dfz4cZ0+fdqIKS4uVnh4uBISEjo6XQAAAAAAAADXqXZ/jP3xxx/X5MmTFRsbq88//1xPPfWU8dJpm82mrKws5eTkKDIyUuHh4Xr00UfldDo1ZswYSdLEiROVkJCg+++/X0uXLpXb7daCBQuUnZ3NY+oAAAAAAAAA2tTuzc6Wl06fOXNGAwYM0O233+730umVK1eqR48eSk9Pl9frlcvl0vPPP28cHxwcrB07dmjWrFlyOp3q3bu3MjMztWjRovZOFQAAAAAAAICJtHuz87teOh0aGqqCggIVFBS0GRMbG6udO3e2d2oAAAAAAAAATKzD39kJAAAAAAAAAJ2BZicAAAAAAAAAU6DZCQAAAAAAAMAUaHYCAAAAAAAAMAWanQAAAAAAAABMgWYnAAAAAAAAAFOg2QkAQBtKS0s1efJkRUdHKygoSNu3b/eb9/l8ysvL08CBAxUWFqaUlBR9/PHHfjFnz55VRkaGwsPDFRERoaysLNXX1/vFvPfee7rjjjsUGhqqmJgYLV26tKOXBgAAAACmRLMTAIA2NDQ0aPjw4SooKGh1funSpVq9erXWrVunw4cPq3fv3nK5XGpsbDRiMjIyVFlZqeLiYu3YsUOlpaWaMWOGMe/xeDRx4kTFxsaqvLxczzzzjBYuXKgXXnihw9cHAAAAAGYTEugEAADoqlJTU5WamtrqnM/n07PPPqsFCxZoypQpkqSXX35Zdrtd27dv17Rp0/Thhx9q165dOnr0qEaNGiVJWrNmje666y4tW7ZM0dHR2rRpk5qamrRhwwZZLBbdcsstqqio0IoVK/yaopfyer3yer3GtsfjaeeVAwAAAMD1iTs7AQD4HqqqquR2u5WSkmLss9lsGj16tMrKyiRJZWVlioiIMBqdkpSSkqIePXro8OHDRszYsWNlsViMGJfLpRMnTujcuXOtXjs/P182m80YMTExHbFEAAAAALju0OwEAOB7cLvdkiS73e633263G3Nut1tRUVF+8yEhIYqMjPSLae0cl17jm3Jzc1VXV2eMU6dOXfuCAAAAAMAEeIwdAIDrjNVqldVqDXQaAAAAANDlcGcnAADfg8PhkCTV1NT47a+pqTHmHA6HTp8+7Td/4cIFnT171i+mtXNceg0AAAAAwJWh2QkAwPcQFxcnh8OhkpISY5/H49Hhw4fldDolSU6nU7W1tSovLzdi9u7dq+bmZo0ePdqIKS0t1fnz542Y4uJiDR06VDfccEMnrQYAAAAAzIFmJwAAbaivr1dFRYUqKiokff1RooqKClVXVysoKEhz5szR008/rddee03Hjx/X9OnTFR0dralTp0qS4uPjNWnSJD3yyCM6cuSI3nrrLc2ePVvTpk1TdHS0JOnee++VxWJRVlaWKisrtXXrVq1atUo5OTkBWjUAAAAAXL94ZycAAG04duyYxo0bZ2y3NCAzMzNVWFio+fPnq6GhQTNmzFBtba1uv/127dq1S6GhocYxmzZt0uzZszVhwgT16NFD6enpWr16tTFvs9m0Z88eZWdnKykpSf3791deXp5mzJjReQsFAAAAAJOg2QkAQBuSk5Pl8/nanA8KCtKiRYu0aNGiNmMiIyO1efPmy14nMTFRBw4c+N55AgAAAAC+xmPsAAAAAAAAAEyBZicAAAAAAAAAU6DZCQAAAAAAAMAUaHYCAAAAAAAAMAWanQAAAAAAAABMgWYnAAAAAAAAAFOg2QkAAAAAAADAFGh2AgAAAAAAADAFmp0AAAAAAAAATIFmJwAAAAAAAABToNkJAAAAAAAAwBRodgIAAAAAAAAwBZqdAAAAAAAAAEyBZicAAAAAAAAAU6DZCQAAAAAAAMAUaHYCAAAAAAAAMAWanQAAAAAAAABMgWYnAAAAAAAAAFOg2QkAAAAAAADAFGh2AgAAAAAAADAFmp0AAAAAAAAATIFmJwAAAAAAAABToNkJAAAAAAAAwBS6dLOzoKBAN954o0JDQzV69GgdOXIk0CkBANAhqHkAgO6CmgcA6Ehdttm5detW5eTk6KmnntLbb7+t4cOHy+Vy6fTp04FODQCAdkXNAwB0F9Q8AEBHCwl0Am1ZsWKFHnnkET344IOSpHXr1qmoqEgbNmzQr371q2/Fe71eeb1eY7uurk6S5PF4rimPi96GazoeuBrX+ve1I9U3+QKdArqJ9vgdtJzD57s+/t5S89AdUfMAap5EzUP3QM0DOrnm+bogr9frCw4O9r366qt++6dPn+772c9+1uoxTz31lE8Sg8FgMBjGOHXqVCdUrWtDzWMwGAxGewxqHoPBYDC6y/iumtcl7+z8v//7P128eFF2u91vv91u10cffdTqMbm5ucrJyTG2m5ubdfbsWfXr109BQUEdmi/8eTwexcTE6NSpUwoPDw90OkDA8FsIHJ/Ppy+//FLR0dGBTuU7UfOub/zOga/xWwgcah46C79z4Gv8FgLnSmtel2x2fh9Wq1VWq9VvX0RERGCSgSQpPDycHz4gfguBYrPZAp1Ch6HmdT38zoGv8VsIDGoeOhO/c+Br/BYC40pqXpf8QFH//v0VHBysmpoav/01NTVyOBwBygoAgPZHzQMAdBfUPABAZ+iSzU6LxaKkpCSVlJQY+5qbm1VSUiKn0xnAzAAAaF/UPABAd0HNAwB0hi77GHtOTo4yMzM1atQo/fjHP9azzz6rhoYG46t96LqsVqueeuqpbz1uAnQ3/BZwpah51y9+58DX+C3gSlHzrl/8zoGv8Vvo+oJ8vu/6XnvgPPfcc3rmmWfkdrs1YsQIrV69WqNHjw50WgAAtDtqHgCgu6DmAQA6UpdudgIAAAAAAADAleqS7+wEAAAAAAAAgKtFsxMAAAAAAACAKdDsBAAAAAAAAGAKNDu7ieTkZM2ZMydg13/ggQc0derULpMPAMC8Al1jqHkAgM4S6BpDzQPQFYUEOgF0T3/84x/Vs2fPQKcBAECHo+YBALoLah6AroBmJwIiMjIy0CkAANApqHkAgO6CmgegK+Ax9m7kwoULmj17tmw2m/r3768nn3xSPp9PkvS73/1Oo0aNUt++feVwOHTvvffq9OnTxrHnzp1TRkaGBgwYoLCwMN1000166aWXjPlTp07pF7/4hSIiIhQZGakpU6bo008/bTOXbz7ecOONN+o3v/mNHnroIfXt21eDBw/WCy+84HfM1V4D6CjNzc3Kz89XXFycwsLCNHz4cP3hD3+Qz+dTSkqKXC6X8ds6e/asBg0apLy8PEnSvn37FBQUpKKiIiUmJio0NFRjxozR+++/H8glAaZDzQPaBzUP6PqoeUD7oOaZB83ObmTjxo0KCQnRkSNHtGrVKq1YsUIvvviiJOn8+fNavHix3n33XW3fvl2ffvqpHnjgAePYJ598Uh988IHeeOMNffjhh1q7dq369+9vHOtyudS3b18dOHBAb731lvr06aNJkyapqanpivNbvny5Ro0apXfeeUf//u//rlmzZunEiRPteg2gPeTn5+vll1/WunXrVFlZqblz5+q+++5TaWmpNm7cqKNHj2r16tWSpJkzZ+oHP/iBUQRbzJs3T8uXL9fRo0c1YMAATZ48WefPnw/EcgBTouYB7YOaB3R91DygfVDzTMSHbuEnP/mJLz4+3tfc3Gzse+KJJ3zx8fGtxh89etQnyffll1/6fD6fb/Lkyb4HH3yw1djf/e53vqFDh/qd2+v1+sLCwny7d+/2+Xw+X2Zmpm/KlCl++Tz22GPGdmxsrO++++4ztpubm31RUVG+tWvXXvE1gM7Q2Njo69Wrl+/gwYN++7Oysnz33HOPz+fz+bZt2+YLDQ31/epXv/L17t3b99e//tWI+/Of/+yT5NuyZYux78yZM76wsDDf1q1bO2cRgMlR84D2Qc0Duj5qHtA+qHnmwjs7u5ExY8YoKCjI2HY6nVq+fLkuXryoiooKLVy4UO+++67OnTun5uZmSVJ1dbUSEhI0a9Yspaen6+2339bEiRM1depU/dM//ZMk6d1339XJkyfVt29fv+s1Njbqk08+ueL8EhMTjT8HBQXJ4XAYj1i01zWAa3Xy5En9/e9/15133um3v6mpSbfddpsk6ec//7leffVVLVmyRGvXrtVNN930rfM4nU7jz5GRkRo6dKg+/PDDjk0e6EaoecC1o+YB1wdqHnDtqHnmQrMTamxslMvlksvl0qZNmzRgwABVV1fL5XIZjw6kpqbqf//3f7Vz504VFxdrwoQJys7O1rJly1RfX6+kpCRt2rTpW+ceMGDAFefxza/2BQUFGcW4va4BXKv6+npJUlFRkX7wgx/4zVmtVknS3//+d5WXlys4OFgff/xxp+cIoG3UPODKUfOA6xs1D7hy1DxzodnZjRw+fNhv+9ChQ7rpppv00Ucf6cyZM1qyZIliYmIkSceOHfvW8QMGDFBmZqYyMzN1xx13aN68eVq2bJlGjhyprVu3KioqSuHh4R2Se2dcA7gSCQkJslqtqq6u1k9+8pNWY375y1+qR48eeuONN3TXXXcpLS1N48eP94s5dOiQBg8eLOnrF8P/9a9/VXx8fIfnD3QX1Dzg2lHzgOsDNQ+4dtQ8c+EDRd1IdXW1cnJydOLECf3+97/XmjVr9Nhjj2nw4MGyWCxas2aN/va3v+m1117T4sWL/Y7Ny8vTn/70J508eVKVlZXasWOH8YPNyMhQ//79NWXKFB04cEBVVVXat2+f/uM//kOfffZZu+TeGdcArkTfvn31+OOPa+7cudq4caM++eQTvf3221qzZo02btyooqIibdiwQZs2bdKdd96pefPmKTMzU+fOnfM7z6JFi1RSUqL3339fDzzwgPr376+pU6cGZlGACVHzgGtHzQOuD9Q84NpR88yFZmc3Mn36dH311Vf68Y9/rOzsbD322GOaMWOGBgwYoMLCQr3yyitKSEjQkiVLtGzZMr9jLRaLcnNzlZiYqLFjxyo4OFhbtmyRJPXq1UulpaUaPHiw7r77bsXHxysrK0uNjY3t9r9znXEN4EotXrxYTz75pPLz8xUfH69JkyapqKhIN954o7KysrRw4UKNHDlSkvTrX/9adrtdM2fO9DvHkiVL9NhjjykpKUlut1uvv/66LBZLIJYDmBI1D2gf1Dyg66PmAe2DmmceQT6fzxfoJACgu9i3b5/GjRunc+fOKSIiItDpAADQYah5AIDugprXtXBnJwAAAAAAAABToNkJAAAAAAAAwBR4jB0AAAAAAACAKXBnJwAAAAAAAABToNkJAAAAAAAAwBRodgIAAAAAAAAwBZqdAAAAAAAAAEyBZicAAAAAAAAAU6DZCQAAAAAAAMAUaHYCAAAAAAAAMAWanQAAAAAAAABM4f8BgiB71a1JAPkAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# vLLM e2e A/B - baseline vs exp, from the unprofiled bench arms. The three numbers\n", + "# that summarize serving: generation rate + the two latency components.\n", + "import matplotlib.pyplot as plt\n", + "\n", + "e2e = df[(df[\"preprocessor\"] == \"parse_vllm\") & (df[\"command\"] == \"bench\") & df[\"num\"].notna()]\n", + "\n", + "# Pull one (name, statistic, unit) triple as (baseline, exp). statistic is NaN for the\n", + "# single-value throughput; \"mean\" for the distributional latencies.\n", + "def ab(name, stat, unit):\n", + " m = e2e[(e2e[\"name\"] == name) & (e2e[\"unit\"] == unit)]\n", + " m = m[m[\"statistic\"].isna()] if stat is None else m[m[\"statistic\"] == stat]\n", + " g = m.groupby(\"container\")[\"num\"].first() # one value per arm\n", + " return g[\"baseline\"], g[\"exp\"]\n", + "\n", + "charts = [\n", + " (\"output token throughput (tok/s)\", \"output_throughput\", None, \"tokens_per_s\"), # e2e rate\n", + " (\"time to first token - TTFT (ms)\", \"ttft\", \"mean\", \"ms\"), # prefill latency\n", + " (\"time per output token - TPOT (ms)\", \"tpot\", \"mean\", \"ms\"), # decode latency\n", + "]\n", + "fig, axes = plt.subplots(1, 3, figsize=(13.5, 4))\n", + "for ax, (title, name, stat, unit) in zip(axes, charts):\n", + " b, x = ab(name, stat, unit)\n", + " bars = ax.bar([\"baseline\", \"exp\"], [b, x], color=[\"#2c7fb8\", \"#d95f0e\"])\n", + " ax.bar_label(bars, fmt=\"%.2f\")\n", + " ax.set_title(f\"{title}\\nexp {100 * (x - b) / b:+.1f}% vs baseline\")\n", + "fig.suptitle(\"vLLM e2e A/B: throughput + latency\")\n", + "plt.tight_layout()\n", + "plt.show()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "8611999a", + "metadata": { + "execution": { + "iopub.execute_input": "2026-07-01T14:33:53.890633Z", + "iopub.status.busy": "2026-07-01T14:33:53.890397Z", + "iopub.status.idle": "2026-07-01T14:33:54.146102Z", + "shell.execute_reply": "2026-07-01T14:33:54.144752Z" + } + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABdIAAAMeCAYAAAAZDPZSAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjgsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvwVt1zgAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzs3Xd8Tvf///HnJZEdiRGSGAlZIrVpjZJYtWtTVaRotXZrlC6hiha1i9YIbZQataqUfsRIqygxSgmlWk1rpEJscn5/+OX6uiSuXCHEeNxvt+t2y3XO+7zfrzNz8jrvvI/JMAxDAAAAAAAAAAAgQ7lyOgAAAAAAAAAAAB5mJNIBAAAAAAAAALCCRDoAAAAAAAAAAFaQSAcAAAAAAAAAwAoS6QAAAAAAAAAAWEEiHQAAAAAAAAAAK0ikAwAAAAAAAABgBYl0AAAAAAAAAACsIJEOAAAAAAAAAIAVJNIBAMhhsbGxMplMWrx4cU6HkmXR0dEymUw6duxYToeCO4iIiNBTTz11X9tISUlRwYIFFRMTc1/byYpjx47JZDIpOjraPC0qKkomkynngnpAIiMj5ebmltNhWPD391dkZGROh/HApR1zp0+fzulQJEn79++Xvb299u3bd0/1PIjryr0wmUyKiooyf+d3FQAAyA4k0gEATyyTyWTTJzY2NqdDBR5qEydOlLu7u1544YWcDgWAFaVKlVLjxo31/vvv53QoAAAAjxz7nA4AAICc8sUXX1h8nzdvntatW5duemho6IMMC3ikXLt2TRMnTtQbb7whOzu7nA7HqnfffVeDBw/O6TCeSAcPHlSuXPTheRi89tpratSokY4cOaKAgICcDueB6Nixo1544QU5OjrmdCgAAOARRiIdAPDEeumllyy+b926VevWrUs3/VFnGIYuX74sZ2fnnA4lR124cEGurq45HUaGLl++LAcHh0cy0bhq1SqdOnVKbdu2zelQMmVvby97+4fj9vf69etKTU2Vg4NDTofyQJDAvH+yeo2vW7eu8ubNq7lz52r48OH3ObqHg52d3UP/oA8AADz8Hr2/1gAAeIAuXLig/v37q2jRonJ0dFRISIjGjh0rwzAsyplMJvXq1UsxMTEKCQmRk5OTKlasqE2bNt1Vu1euXFGTJk3k4eGhH3/8UZKUmpqqCRMmKCwsTE5OTipUqJC6d++u//77z2JZf39/NWnSRGvXrlWlSpXk7OysGTNmmMdi//rrr/Xhhx+qSJEicnJyUp06dXT48OF0Mfz8889q0KCBPDw85OLiovDwcMXFxWUa+44dO1S/fn0VKFBAzs7OKl68uLp06ZLpcsuXL1fjxo3l6+srR0dHBQQE6IMPPtCNGzcyjK1Ro0bKmzevXF1dVaZMGU2cONE8P22M6CNHjqhRo0Zyd3dXhw4dJNm+T9etW6dnn31Wnp6ecnNzU0hIiN5++22LMpMnT1ZYWJhcXFyUN29eVapUSfPnz7e6nmn7YcGCBXr33XdVuHBhubi46Ny5c0pKStKAAQNUunRpubm5KU+ePGrYsKF2796dYR227svbff/993JxcVH79u11/fp1m9c3I8uWLZO/v3+6nq1p++D48eNq0qSJ3NzcVLhwYU2dOlWStHfvXtWuXVuurq7y8/PLcLudPXtW/fr1M++rwMBAffTRR0pNTU1XLjIyUh4eHvL09FTnzp119uzZdPVlNEb6nDlzVLt2bRUsWFCOjo4qVaqUpk2blm7ZtPNqy5Ytevrpp+Xk5KQSJUpo3rx5mW6jtPHax44dqwkTJiggIECOjo7av3+/rl69qvfff18VK1aUh4eHXF1dVaNGDW3YsOGOdXz22WfmOipXrqzt27dnGkN8fLy8vLwUERGhlJSUTMvf6tbjbdiwYSpcuLDc3d3VunVrJScn68qVK+rXr58KFiwoNzc3vfzyy7py5Uq67XfrGOlpY1bHxcXpzTfflJeXl1xdXdWiRQudOnXKprjSrruLFi1SqVKl5OzsrKpVq2rv3r2SpBkzZigwMFBOTk6KiIhINz725s2b1aZNGxUrVkyOjo4qWrSo3njjDV26dMlc5uTJk+btdus14vDhw3J1dVW7du1sivX06dNq27at8uTJo/z586tv3766fPmyRZmsHou3X+Ml287j3LlzKyIiQsuXL7eYfvHiRf32229ZGs/9l19+UbVq1czX+unTp1vMt/X4lqQFCxaoYsWKcnd3V548eVS6dGmL67pk+zXhdhmNkZ6Vc/pu223SpIlKlCiR4byqVauqUqVK5u93ew2WpC+//FIVK1aUs7Oz8uXLpxdeeEF//vmnef6cOXNkMpk0e/Zsi+VGjhwpk8mk1atXS7K8zowfP15+fn5ydnZWeHj4PY+rDwDAY8EAAACGYRhGz549jVt/Naamphq1a9c2TCaT0a1bN2PKlClG06ZNDUlGv379LJaVZDz11FNGgQIFjOHDhxsfffSR4efnZzg7Oxt79+612u6GDRsMScaiRYsMwzCMixcvGvXq1TPy5s1rbNu2zVyuW7duhr29vfHKK68Y06dPN9566y3D1dXVqFy5snH16lVzOT8/PyMwMNDImzevMXjwYGP69OnGhg0bzO2UL1/eqFixojF+/HgjKirKcHFxMZ5++mmLmH744QfDwcHBqFq1qjFu3Dhj/PjxRpkyZQwHBwfj559/NpebM2eOIck4evSoYRiG8e+//xp58+Y1goODjTFjxhiff/658c477xihoaGZbv/mzZsbbdu2NcaMGWNMmzbNaNOmjSHJGDBggEW577//3nBwcDD8/PyMoUOHGtOmTTP69Olj1K1b11ymc+fOhqOjoxEQEGB07tzZmD59ujFv3jyb9+m+ffsMBwcHo1KlSsbEiRON6dOnGwMGDDBq1qxpLvPZZ58ZkozWrVsbM2bMMCZOnGh07drV6NOnj9X1TNsPpUqVMsqVK2d88sknxqhRo4wLFy4Y27dvNwICAozBgwcbM2bMMIYPH24ULlzY8PDwME6cOJGuDlv2ZXh4uBEWFmb+vnLlSsPR0dHo1KmTcf36dZvX904CAwONli1bppveuXNnw8nJyShVqpTx2muvGVOnTjWqVatmSDLmzJlj+Pr6GgMHDjQmT55shIWFGXZ2dsbvv/9uXv7ChQtGmTJljPz58xtvv/22MX36dKNTp06GyWQy+vbtay6Xmppq1KxZ08iVK5fRo0cPY/LkyUbt2rWNMmXKmNtKM3ToUOP229/KlSsbkZGRxvjx443Jkycbzz33nCHJmDJlikU5Pz8/IyQkxChUqJDx9ttvG1OmTDEqVKhgmEwmY9++fVa30dGjR837vESJEsbo0aON8ePHG3/88Ydx6tQpw8fHx3jzzTeNadOmGR9//LEREhJi5M6d29i1a1e6OsqXL28EBgYaH330kfHxxx8bBQoUMIoUKWJxDejcubPh6upq/r5t2zYjb968Rr169YyLFy9ajTUjacdbuXLljKpVqxqTJk0y+vTpY5hMJuOFF14wXnzxRaNhw4bG1KlTjY4dOxqSjGHDhqXbfp07dzZ/T7t2lC9f3qhdu7YxefJko3///oadnZ3Rtm1bm+KSZJQpU8YoWrSoMXr0aGP06NGGh4eHUaxYMWPKlClGqVKljHHjxhnvvvuu4eDgYNSqVcti+d69exuNGjUyRo4cacyYMcPo2rWrYWdnZ7Ru3dqi3KJFiwxJxsSJEw3DMIwbN24Y1atXNwoVKmScPn3aaoxpx1zp0qWNpk2bGlOmTDFeeuklQ5LRsWNHi7JZORYzusZn5TweMWKEkStXLiM5Odk8LW0/Dx06NNNtHx4ebvj6+hoFCxY0evXqZUyaNMl49tlnDUnGrFmzzOVsPb6///57Q5JRp04dY+rUqcbUqVONXr16GW3atDGXsfWaYBhGuvW4/XdV2na05ZzOSru3mzdvniHJ4ne5YRjGsWPHDEnGmDFjDMO4t2vwiBEjDJPJZLRr18749NNPjWHDhhkFChQw/P39jf/++89crkmTJoaHh4dx/PhxwzAMY8+ePYaDg4PRtWtXc5m060zp0qUNf39/46OPPjKGDRtm5MuXz/Dy8jL++eefTOMBAOBxRiIdAID/7/ZE+rJlywxJxogRIyzKtW7d2jCZTMbhw4fN0yQZkowdO3aYp/3xxx+Gk5OT0aJFC6vt3ppIP3/+vBEeHm4UKFDAIsmwefNmQ5IRExNjseyaNWvSTffz8zMkGWvWrMmwndDQUOPKlSvm6RMnTjQkmRP+qampRlBQkFG/fn0jNTXVXO7ixYtG8eLFjXr16pmn3Z6c+OabbwxJxvbt262uc0YySvB1797dcHFxMS5fvmwYhmFcv37dKF68uOHn52eRIEiLO03nzp0NScbgwYMtyti6T8ePH29IMk6dOnXHeJs1a2aRoLZV2n4oUaJEunW+fPmycePGDYtpR48eNRwdHY3hw4enqyOzfWkYlon0JUuWGLlz5zZeeeUVi3ZsWd+MXLt2zTCZTEb//v3TzUvbByNHjjRP+++//wxnZ2fDZDIZCxYsME//7bff0iW+PvjgA8PV1dU4dOiQRb2DBw827OzszMmgtH368ccfm8tcv37dqFGjhk2J9IyOu/r16xslSpSwmJZ2Xm3atMk87eTJk4ajo2OG63+rtORUnjx5jJMnT1rMu379usU+NIyb26lQoUJGly5d0tWRP39+IykpyTx9+fLlhiRj5cqV5mm3JtK3bNli5MmTx2jcuLH5PMqqtOPtqaeeskjYt2/f3jCZTEbDhg0tyletWtXw8/OzmHanRHrdunUtzt033njDsLOzM86ePZtpXJIMR0dHi+TojBkzDEmGt7e3ce7cOfP0IUOGpEukZrTvR40aZZhMJuOPP/6wmN6+fXvDxcXFOHTokDFmzBhDkrFs2bJMY0w75p5//nmL6T169DAkGbt377Yaj7Vj8fZrfFbO4/nz5xuSLB6MZjWRLskYN26cedqVK1eMcuXKGQULFjQfJ7Ye33379jXy5MljfriXEVuvCYZheyLdlnM6K+3eLjk5OcNrxMcff2xxnN3tNfjYsWOGnZ2d8eGHH1pM37t3r2Fvb28xPTEx0ciXL59Rr14948qVK0b58uWNYsWKWTxMSbvOODs7G3/99Zd5+s8//2xIMt54440sxQcAwOOGoV0AALiD1atXy87OTn369LGY3r9/fxmGoe+++85ietWqVVWxYkXz92LFiqlZs2Zau3ZthsOT3C45OVnPPfecfvvtN8XGxqpcuXLmeYsWLZKHh4fq1aun06dPmz8VK1aUm5tbun+TL168uOrXr59hOy+//LLFuMw1atSQJP3++++Sbg4BkZCQoBdffFFnzpwxt3XhwgXVqVNHmzZtuuO/s3t6ekq6OW72tWvXMl3nW906vu/58+d1+vRp1ahRwzzcgCTt2rVLR48eVb9+/cxtpbl9yA5Jev311y2+27pP0+pevny51XX966+/bBpWIyOdO3dON6axo6OjeZz0Gzdu6MyZM+Z/8d+5c2e6OjLbl7f66quv1K5dO3Xv3l0zZsywGI/dlvXNSFJSkgzDUN68ee9Yplu3bhbthISEyNXV1WJM9ZCQEHl6elrEvWjRItWoUUN58+a1OObr1q2rGzdumIdNWr16tezt7S32tZ2dnXr37m3TOty6D5KTk3X69GmFh4fr999/V3JyskXZUqVKmbexJHl5eSkkJCTD7Z2RVq1aycvLy2KanZ2deR+mpqYqKSlJ169fV6VKlTLc5+3atbPY3tb2+YYNG1S/fn3VqVNHS5cuvedxyjt16qTcuXObvz/zzDMyDCPd0E3PPPOM/vzzT/OwQda8+uqrFudujRo1dOPGDf3xxx82xVSnTh35+/tbtC3d3Nbu7u7ppt+6nW7d9xcuXNDp06dVrVo1GYahXbt2WbQzZcoUeXh4qHXr1nrvvffUsWNHNWvWzKYYJalnz54W39OOz7QhNW6PJ7NjMaNrfFbO47Rj6NZhXNKGr4mKirJpnezt7dW9e3fzdwcHB3Xv3l0nT57UL7/8Isn249vT01MXLlzQunXr7tierdeErLDlnL6XdtOG5/r6668thgZauHChqlSpomLFipnXX8r6NXjp0qVKTU1V27ZtLWLz9vZWUFCQxb2Bt7e3pk6dqnXr1qlGjRqKj4/X7NmzlSdPnnT1Nm/eXIULFzZ/f/rpp/XMM89YHK8AADyJSKQDAHAHf/zxh3x9fS2SMZIUGhpqnn+roKCgdHUEBwfr4sWLNo35269fP23fvl3r169XWFiYxbyEhAQlJyerYMGC8vLysvikpKTo5MmTFuWLFy9+x3bS/nBPk5ZQSRtrPSEhQdLNRO/tbc2cOVNXrlxJl9RJEx4erlatWmnYsGEqUKCAmjVrpjlz5qQbLzkjv/76q1q0aCEPDw/lyZNHXl5e5he/prV35MgRSdJTTz2VaX329vYqUqSIxTRb92m7du1UvXp1devWTYUKFdILL7ygr7/+2iLB8dZbb8nNzU1PP/20goKC1LNnT5vGkE+T0T5KTU3V+PHjFRQUJEdHRxUoUEBeXl7as2dPhts8s32Z5ujRo3rppZfUqlUrTZ48Od1DB1vW15pbE0S3cnJySpc49vDwUJEiRdLF4OHhYRF3QkKC1qxZk+4YrFu3riSZj/k//vhDPj4+cnNzs6gvJCTEptjj4uJUt25dubq6ytPTU15eXuZxiW/f5rdvb+nmNr99e9/Jnc7LuXPnqkyZMnJyclL+/Pnl5eWlb7/99p72+eXLl9W4cWOVL19eX3/9dba81PT2tj08PCRJRYsWTTc9NTX1jtcJa3Xevj7Jycn6559/zJ+kpKS7junWeiXp+PHjioyMVL58+eTm5iYvLy+Fh4eb271Vvnz5NGnSJO3Zs0ceHh6aNGlSput2q9t/PwQEBChXrlwWY3Zn5VjM6FjKynmcds5m9ADSVr6+vule4BwcHCxJFutly/Hdo0cPBQcHq2HDhipSpIi6dOmiNWvWWNRt6zUhK2w5p++13Xbt2unPP//UTz/9JOnm77FffvnFYnz9u70GJyQkyDAMBQUFpYvvwIED6WJ74YUX1LhxY23btk2vvPKK6tSpk2G9d7qfuf09AwAAPGnsczoAAABwU7NmzbRgwQKNHj1a8+bNs+gxnJqaqoIFCyomJibDZW9PVt7e0/lWdnZ2GU5PS6yk/eE+ZswYi17xt7o9aZnGZDJp8eLF2rp1q1auXKm1a9eqS5cuGjdunLZu3XrH5c6ePavw8HDlyZNHw4cPV0BAgJycnLRz50699dZbWeqhl+bW3t1Z5ezsrE2bNmnDhg369ttvtWbNGi1cuFC1a9fW999/Lzs7O4WGhurgwYNatWqV1qxZoyVLlujTTz/V+++/r2HDhtnUxu1Gjhyp9957T126dNEHH3ygfPnyKVeuXOrXr1+G2yCzfZnGx8dHPj4+Wr16tXbs2GHxgjtb1zcj+fLlk8lkumMi+U7L2RJ3amqq6tWrp0GDBmVYNi1hdy+OHDmiOnXqqGTJkvrkk09UtGhROTg4aPXq1Ro/fny6bW7r9r6TjPb5l19+qcjISDVv3lwDBw5UwYIFZWdnp1GjRpkfHN1NDI6OjmrUqJGWL1+uNWvWqEmTJjbFaM297M+s1pm2bN++fTV37lzz9PDwcMXGxt5zTDdu3FC9evWUlJSkt956SyVLlpSrq6tOnDihyMjIDM+3tWvXSrqZjP/rr7/S/VdMVtyewM7qsZjRsZSV8zjtnC1QoMBdr4MtbD2+CxYsqPj4eK1du1bfffedvvvuO82ZM0edOnUy7//7cU14ENeipk2bysXFRV9//bWqVaumr7/+Wrly5VKbNm3MZe72GpyamiqTyaTvvvsuwzK3/849c+aMduzYIUnav3+/UlNT7/r3JAAATyIS6QAA3IGfn5/Wr1+v8+fPW/RgThtmxM/Pz6J8Wk/uWx06dEguLi7pEt0Zad68uZ577jlFRkbK3d1d06ZNM88LCAjQ+vXrVb16datJ8uwQEBAg6ea/pKf1uMuqKlWqqEqVKvrwww81f/58dejQQQsWLLAY5uNWsbGxOnPmjJYuXaqaNWuapx89ejTD2Pbt23dXsWVln+bKlUt16tRRnTp19Mknn2jkyJF65513tGHDBnPbrq6uateundq1a6erV6+qZcuW+vDDDzVkyBA5OTllOb7FixerVq1amjVrlsX0s2fP3lPCy8nJSatWrVLt2rXVoEEDbdy4Md1/Pdiyvrezt7dXQEBAuv2UHQICApSSkpLpfvbz89MPP/yglJQUi6TRwYMHM21j5cqVunLlilasWGHRM/X2oZLup8WLF6tEiRJaunSpRXJ16NCh91SvyWRSTEyMmjVrpjZt2ui7775TRETEPUb74A0aNMj8nymSrA4jlBV79+7VoUOHNHfuXHXq1Mk8/U5Di6xZs0YzZ87UoEGDFBMTo86dO+vnn3+Wvb1tf04lJCRY9CI/fPiwUlNTzcPSZNexaOt5fPToUeXKleueHkj9/fffunDhgkWv9EOHDkmSeb2ycnw7ODioadOmatq0qVJTU9WjRw/NmDFD7733ngIDA22+JmS3e23X1dVVTZo00aJFi/TJJ59o4cKFqlGjhnx9fS3K3c01OCAgQIZhqHjx4jbty549e+r8+fMaNWqUhgwZogkTJujNN99MV+5O9zO3DqMEAMCTiMfPAADcQaNGjXTjxg1NmTLFYvr48eNlMpnUsGFDi+k//fSTxZivf/75p5YvX67nnnvujr3JbtepUydNmjRJ06dP11tvvWWe3rZtW924cUMffPBBumWuX7+us2fPZmHNrKtYsaICAgI0duxYpaSkpJtvbZia//77L10v1LRe7daGd0nbPrcue/XqVX366acW5SpUqKDixYtrwoQJ6dbZlt6vtu7T24ePyGg9zpw5YzHfwcFBpUqVkmEYWR4fPo2dnV269Vi0aJFOnDhxV/XdysPDQ2vXrlXBggVVr149i96gtqzvnVStWtXcwzE7tW3bVj/99JO5F/Ctzp49ax5/u1GjRrp+/brFg6cbN25o8uTJmbaR0XGXnJysOXPm3Gv4Nssohp9//tk8DMS9cHBw0NKlS1W5cmU1bdpU27Ztu+c6H7RSpUqpbt265s+t76G4Fxltd8MwNHHixHRlz549q27duunpp5/WyJEjNXPmTO3cuVMjR460ub2pU6dafE87PtOuOdlxLGblPP7ll18UFhZmHvJGkvl9FLeOm27N9evXNWPGDPP3q1evasaMGfLy8jLvJ1uP79uvp7ly5VKZMmUsYrf1mpDdsqPddu3a6e+//9bMmTO1e/dui2FdpLu/Brds2VJ2dnYaNmxYut8dhmFYbNfFixdr4cKFGj16tAYPHqwXXnhB7777rvnhx62WLVtm8Xtn27Zt+vnnn9Pd9wAA8KShRzoAAHfQtGlT1apVS++8846OHTumsmXL6vvvv9fy5cvVr18/c+/oNE899ZTq16+vPn36yNHR0ZwEtmWYj1v16tVL586d0zvvvCMPDw+9/fbbCg8PV/fu3TVq1CjFx8frueeeU+7cuZWQkKBFixZp4sSJat26dbasd65cuTRz5kw1bNhQYWFhevnll1W4cGGdOHFCGzZsUJ48ebRy5coMl507d64+/fRTtWjRQgEBATp//rw+//xz5cmTR40aNbpjm9WqVVPevHnVuXNn9enTRyaTSV988UW6xECuXLk0bdo0NW3aVOXKldPLL78sHx8f/fbbb/r1118zTHTcytZ9Onz4cG3atEmNGzeWn5+fTp48qU8//VRFihTRs88+K0l67rnn5O3trerVq6tQoUI6cOCApkyZosaNG6cbg91WTZo00fDhw/Xyyy+rWrVq2rt3r2JiYlSiRIm7qu92BQoU0Lp16/Tss8+qbt262rJliwoXLmzT+t5Js2bN9MUXX+jQoUPZMtxKmoEDB2rFihVq0qSJIiMjVbFiRV24cEF79+7V4sWLdezYMRUoUEBNmzZV9erVNXjwYB07dkylSpXS0qVLbRqf+7nnnjP3gu3evbtSUlL0+eefq2DBgkpMTMy2dbGmSZMmWrp0qVq0aKHGjRvr6NGjmj59ukqVKpXhg6yscnZ2Nv83QsOGDbVx40bzOwaio6P18ssva86cOYqMjLznth4lJUuWVEBAgAYMGKATJ04oT548WrJkSYbDFPXt21dnzpzR+vXrZWdnpwYNGqhbt24aMWKEmjVrprJly2ba3tGjR/X888+rQYMG+umnn/Tll1/qxRdfNC+bHceirefxtWvXtHHjRvXo0cNi+W3btqlWrVoaOnSoTS8c9fX11UcffaRjx44pODhYCxcuVHx8vD777DPzS2ltPb67deumpKQk1a5dW0WKFNEff/yhyZMnq1y5cuZ3WNh6Tchu2dFuo0aN5O7urgEDBsjOzk6tWrWymH+31+CAgACNGDFCQ4YM0bFjx9S8eXO5u7vr6NGj+uabb/Tqq69qwIABOnnypF5//XXVqlVLvXr1knTzBbobNmxQZGSktmzZYjHES2BgoJ599lm9/vrrunLliiZMmKD8+fPfcXgbAACeGAYAADAMwzB69uxp3P6r8fz588Ybb7xh+Pr6Grlz5zaCgoKMMWPGGKmpqRblJBk9e/Y0vvzySyMoKMhwdHQ0ypcvb2zYsCHTdjds2GBIMhYtWmQxfdCgQYYkY8qUKeZpn332mVGxYkXD2dnZcHd3N0qXLm0MGjTI+Pvvv81l/Pz8jMaNG9vcztGjRw1Jxpw5cyym79q1y2jZsqWRP39+w9HR0fDz8zPatm1r/PDDD+Yyc+bMMSQZR48eNQzDMHbu3Gm0b9/eKFasmOHo6GgULFjQaNKkibFjx45Mt0NcXJxRpUoVw9nZ2fD19TUGDRpkrF271pCUbjtu2bLFqFevnuHu7m64uroaZcqUMSZPnmye37lzZ8PV1TXDdmzZpz/88IPRrFkzw9fX13BwcDB8fX2N9u3bG4cOHTKXmTFjhlGzZk3z9gkICDAGDhxoJCcnW13PO+0HwzCMy5cvG/379zd8fHwMZ2dno3r16sZPP/1khIeHG+Hh4ZnWkdG+DA8PN8LCwizKHT582PDx8TFCQ0ONU6dO2bS+d3LlyhWjQIECxgcffGAx/U77IKN4DCPj4/b8+fPGkCFDjMDAQMPBwcEoUKCAUa1aNWPs2LHG1atXzeXOnDljdOzY0ciTJ4/h4eFhdOzY0di1a1e6bTF06NB05/iKFSuMMmXKGE5OToa/v7/x0UcfGbNnz7Y4ru8UX9r63LpvMpK2X8aMGZNuXmpqqjFy5EjDz8/PfN1YtWqV0blzZ8PPz8+mOiQZQ4cONX/PaNufPn3aKFWqlOHt7W0kJCQYhmEYkydPNiQZa9assRr/nY63tPN/+/btFtPTtvOpU6fM0/z8/IzOnTtnumxaW7ZcO9Ouu7e603bKaB32799v1K1b13BzczMKFChgvPLKK8bu3bstjpvly5cbkoxx48ZZ1Hfu3DnDz8/PKFu2rMWxeLu0bbF//36jdevWhru7u5E3b16jV69exqVLlyzK3uuxaOt5/N133xmSzMfB7dvo1mPpTtLO4x07dhhVq1Y1nJycDD8/P4vfV4Zh+/G9ePFi47nnnjMKFixoODg4GMWKFTO6d+9uJCYmWtRn6zXh9vW4/XeVte2Y0Tlta7vWdOjQwZBk1K1bN928e7kGG4ZhLFmyxHj22WcNV1dXw9XV1ShZsqTRs2dP4+DBg4ZhGEbLli0Nd3d349ixYxbLpR3fH330kWEYlufPuHHjjKJFixqOjo5GjRo1jN27d9sUCwAAjzOTYdj4diQAAHBHJpNJPXv2TDdkCPAk+OCDDzRnzhwlJCTYPIwRcl7btm117NixR3LIF9y95s2by2Qy6ZtvvsnpUPCQOXbsmIoXL64xY8ZowIABOR0OAAAPHcZIBwAAwD154403lJKSogULFuR0KLCRYRiKjY3ViBEjcjoUPEAHDhzQqlWrMnzfBgAAAKxjjHQAAADcEzc3N508eTKnw0AWmEwm9tkTKDQ09L69lBMAAOBxR490AAAAAAAAAACsYIx0AAAAAAAAAACsoEc6AAAAAAAAAABWkEgHAAAAAAAAAMAKEukAAAAAAAAAAFhBIh0AAAAAAAAAACtIpAMAAAAAAAAAYAWJdAAAAAAAAAAArCCRDgAAAAAAAACAFSTSAQAAAAAAAACwgkQ6AAAAAAAAAABWkEgHAAAAAAAAAMAKEukAAAAAAAAAAFhBIh0AAAAAAAAAACtIpAMAAAAAAAAAYAWJdAAAgHsUFRUlk8mk06dP53Qo6URERCgiIsL8/dixYzKZTIqOjs6xmAAAAADgUUMiHQAAAAAAAAAAK+xzOgAAAAA8OH5+frp06ZJy586d06EAAAAAwCODRDoAAMATxGQyycnJKafDAAAAAIBHCkO7AAAAZJPTp0+rbdu2ypMnj/Lnz6++ffvq8uXL5vlz5sxR7dq1VbBgQTk6OqpUqVKaNm1aunp27Nih+vXrq0CBAnJ2dlbx4sXVpUsXizKpqamaMGGCwsLC5OTkpEKFCql79+7677//rMaY0RjpkZGRcnNz04kTJ9S8eXO5ubnJy8tLAwYM0I0bN7KlXQAAgDs5ceKEunTpokKFCsnR0VFhYWGaPXu2JOnSpUsqWbKkSpYsqUuXLpmXSUpKko+Pj6pVq2a+X0m7p/n9999Vv359ubq6ytfXV8OHD5dhGDmybgAeH/RIBwAAyCZt27aVv7+/Ro0apa1bt2rSpEn677//NG/ePEnStGnTFBYWpueff1729vZauXKlevToodTUVPXs2VOSdPLkST333HPy8vLS4MGD5enpqWPHjmnp0qUWbXXv3l3R0dF6+eWX1adPHx09elRTpkzRrl27FBcXl+WhW27cuKH69evrmWee0dixY7V+/XqNGzdOAQEBev311+9buwAA4Mn277//qkqVKjKZTOrVq5e8vLz03XffqWvXrjp37pz69eunuXPnqnr16nrnnXf0ySefSJJ69uyp5ORkRUdHy87OzlzfjRs31KBBA1WpUkUff/yx1qxZo6FDh+r69esaPnx4Tq0mgMeBAQAAgHsydOhQQ5Lx/PPPW0zv0aOHIcnYvXu3YRiGcfHixXTL1q9f3yhRooT5+zfffGNIMrZv337H9jZv3mxIMmJiYiymr1mzJt308PBwIzw83Pz96NGjhiRjzpw55mmdO3c2JBnDhw+3qK98+fJGxYoV76pdAAAAW3Tt2tXw8fExTp8+bTH9hRdeMDw8PMz3T0OGDDFy5cplbNq0yVi0aJEhyZgwYYLFMmn3NL179zZPS01NNRo3bmw4ODgYp06duv8rBOCxxdAuAAAA2SStV3ma3r17S5JWr14tSXJ2djbPS05O1unTpxUeHq7ff/9dycnJkiRPT09J0qpVq3Tt2rUM21m0aJE8PDxUr149nT592vypWLGi3NzctGHDhruK/7XXXrP4XqNGDf3+++/3vV0AAPBkMgxDS5YsUdOmTWUYhsX9Rf369ZWcnKydO3dKkqKiohQWFqbOnTurR48eCg8PV58+fTKst1evXuaf03q6X716VevXr38g6wXg8cTQLgAAANkkKCjI4ntAQIBy5cqlY8eOSZLi4uI0dOhQ/fTTT7p48aJF2eTkZHl4eCg8PFytWrXSsGHDNH78eEVERKh58+Z68cUX5ejoKElKSEhQcnKyChYsmGEcJ0+ezHLsTk5O8vLyspiWN29ei7HP70e7AADgyXXq1CmdPXtWn332mT777LMMy6TdXzg4OGj27NmqXLmynJycNGfOHJlMpnTlc+XKpRIlSlhMCw4OliTzPRkA3A0S6QAAAPfJrX/cHTlyRHXq1FHJkiX1ySefqGjRonJwcNDq1as1fvx4paammpdZvHixtm7dqpUrV2rt2rXq0qWLxo0bp61bt8rNzU2pqakqWLCgYmJiMmz39oS4LW4dW/RO7ke7AADgyZV2//PSSy+pc+fOGZYpU6aM+ee1a9dKki5fvqyEhAQVL178/gcJAP8fiXQAAIBscvsfdIcPH1Zqaqr8/f21cuVKXblyRStWrFCxYsXMZe40HEqVKlVUpUoVffjhh5o/f746dOigBQsWqFu3bgoICND69etVvXp1i+Fi7recahcAADyevLy85O7urhs3bqhu3bpWy+7Zs0fDhw/Xyy+/rPj4eHXr1k179+6Vh4eHRbnU1FT9/vvv5l7oknTo0CFJkr+/f7avA4AnB2OkAwAAZJOpU6dafJ88ebIkqWHDhuYe34ZhmOcnJydrzpw5Fsv8999/FmUkqVy5cpKkK1euSJLatm2rGzdu6IMPPkgXw/Xr13X27Nl7Wo87yal2AQDA48nOzk6tWrXSkiVLtG/fvnTzT506JUm6du2aIiMj5evrq4kTJyo6Olr//vuv3njjjQzrnTJlivlnwzA0ZcoU5c6dW3Xq1Lk/KwLgiUCPdAAAgGxy9OhRPf/882rQoIF++uknffnll3rxxRdVtmxZOTk5ycHBQU2bNlX37t2VkpKizz//XAULFlRiYqK5jrlz5+rTTz9VixYtFBAQoPPnz+vzzz9Xnjx51KhRI0lSeHi4unfvrlGjRik+Pl7PPfeccufOrYSEBC1atEgTJ05U69ats339cqpdAADw+Bo9erQ2bNigZ555Rq+88opKlSqlpKQk7dy5U+vXr1dSUpJGjBih+Ph4/fDDD3J3d1eZMmX0/vvv691331Xr1q3N90jSzfe+rFmzRp07d9Yzzzyj7777Tt9++63efvtthqEDcE9IpAMAAGSThQsX6v3339fgwYNlb2+vXr16acyYMZKkkJAQLV68WO+++64GDBggb29vvf766/Ly8lKXLl3MdYSHh2vbtm1asGCB/v33X3l4eOjpp59WTEyMxbAx06dPV8WKFTVjxgy9/fbbsre3l7+/v1566SVVr179vq1jTrULAAAeT4UKFdK2bds0fPhwLV26VJ9++qny58+vsLAwffTRR9q5c6dGjhypXr16qVatWublBg8erOXLl+uVV17Rr7/+Kk9PT0k3e7mvWbNGr7/+ugYOHCh3d3cNHTpU77//fg6tIYDHhcm4/X+HAQAAAAAAgEdMZGSkFi9erJSUlJwOBcBjiDHSAQAAAAAAAACwgkQ6AAAAAAAAAABWkEgHAAAAAAAAAMAKxkgHAAAAAAAAAMAKeqQDAAAAAAAAAGCFfU4HAABPotTUVP39999yd3eXyWTK6XAAAADMDMPQ+fPn5evrq1y57r3vFfc9AADgYZWV+x4S6QCQA/7++28VLVo0p8MAAAC4oz///FNFihS553q47wEAAA87W+57SKQDQA5wd3eXdPNCnSdPnhyOBgAA4P+cO3dORYsWNd+v3CvuewAAwMMqK/c9JNIBIAek/Vtznjx5+IMSAAA8lLJrGBbuewAAwMPOlvseXjYKAAAAAAAAAIAVJNIBAAAAAAAAALCCRDoAAAAAAAAAAFaQSAcAAAAAAAAAwAoS6QAAAAAAAAAAWEEiHQAAAAAAAAAAK0ikAwAAAAAAAABgBYl0AAAAAAAAAACsIJEOAAAAAAAAAIAVJNIBAAAAAAAAALCCRDoAAAAAAAAAAFaQSAcAAAAAAAAAwAoS6QAAAAAAAAAAWEEiHQAAAAAAAAAAK0ikAwAAAAAAAABgBYl0AAAAAAAAAACsIJEOAAAAAAAAAIAVJNIBAAAAAAAAALCCRDoAAAAAAAAAAFaQSAcAAAAAAAAAwAoS6QAAAAAAAAAAWEEiHQAAAAAAAAAAK0ikAwAAAAAAAABgBYl0AAAAAAAAAACsIJEOAAAAAAAAAIAVJNIBAAAAAAAAALCCRDoAAAAAAAAAAFaQSAcAAAAAAAAAwAr7nA4AAJ5kVUatl52ja06HAQBPlL1R9XM6BOCJdPi1InJzMOV0GADwRAqOTs7pEIBHHj3SAQAAAAAAAACwgkQ6AAAAAAAAAABWkEgHAAAAAAAAAMAKEukAAAAAAAAAAFhBIh0AAAAAAAAAACtIpAMAAAAAAAAAYAWJdAAAAAAAAAAArCCRDgAAAAAAAACAFSTSAQAAAAAAAACwgkQ6AAAAAAAAAABWkEgHAAAAAAAAAMAKEukAAAAAAAAAAFhBIh0AAAAAAAAAACtIpAMAAAAAAAAAYAWJdAAAAAAAAAAArCCRDgAAAAAAAACAFU9EIt1kMmnZsmV3nH/s2DGZTCbFx8ff1zhiY2NlMpl09uxZm8pHRESoX79+9zWmNJGRkWrevPkDaSu73bp/7+e+zOr+AwAAAAAAAPB4eCIS6YmJiWrYsGFOh6Fq1aopMTFRHh4eOR0KYNXdPlh5WB/IREVFqVy5cjkdBgDgAbt2/oz+jf1C186fuWOZxMRERUVFKTEx8QFGBgAAcH+cvJiqyfGXdfJiaobzufcB7t4TkUj39vaWo6NjTochBwcHeXt7y2Qy3Zf6r169el/qfZwYhqHr16/ndBg5hmMEAPAkuZ6SpFMbY3Q9JemOZRITEzVs2DD+mAQAAI+FU5cMTdl9VacuGRnO594HuHsPdSL9s88+k6+vr1JTLZ+iNWvWTF26dDF/nzZtmgICAuTg4KCQkBB98cUXFuVvH9pl27ZtKl++vJycnFSpUiXt2rUr01hOnjyppk2bytnZWcWLF1dMTIz8/f01YcIESRkPKXL27FmZTCbFxsZKynhokLi4OEVERMjFxUV58+ZV/fr19d9//2UYw7fffisPDw/FxMRI+r/evx9++KF8fX0VEhIiSfrzzz/Vtm1beXp6Kl++fGrWrJmOHTtmrufGjRt688035enpqfz582vQoEEyDMsL7K3rlqZcuXKKioqyWL/u3burUKFCcnJy0lNPPaVVq1aZ52/ZskU1atSQs7OzihYtqj59+ujChQuZbutbbd++XfXq1VOBAgXk4eGh8PBw7dy50+bl07b5d999p4oVK8rR0VFbtmxRamqqRo0apeLFi8vZ2Vlly5bV4sWLLZZdvXq1goOD5ezsrFq1allsQynjXs4TJkyQv7+/xbTZs2crLCxMjo6O8vHxUa9evczzzp49q27dusnLy0t58uRR7dq1tXv3bpvWLa39GTNmqGjRonJxcVHbtm2VnJxsLnOnY2Tv3r2qXbu2nJ2dlT9/fr366qtKSUkx1zt37lwtX75cJpPJ4hi+m+Vq165tsc6SdOrUKTk4OOiHH36QdPN4++CDD9S+fXu5urqqcOHCmjp1qsUyd7utoqOjNWzYMO3evdscV3R0tAYMGKAmTZqYy02YMEEmk0lr1qwxTwsMDNTMmTNt2h+ZuXLlis6dO2fxAQA8GDeuXtaNKxfMn1uvxWm/xwBkH+57ACDnXbxmKOXq/3249wHu3UOdSG/Tpo3OnDmjDRs2mKclJSVpzZo16tChgyTpm2++Ud++fdW/f3/t27dP3bt318svv2yxzK1SUlLUpEkTlSpVSr/88ouioqI0YMCATGOJjIzUn3/+qQ0bNmjx4sX69NNPdfLkyXtav/j4eNWpU0elSpXSTz/9pC1btqhp06a6ceNGurLz589X+/btFRMTY153Sfrhhx908OBBrVu3TqtWrdK1a9dUv359ubu7a/PmzYqLi5Obm5saNGhg7o08btw4RUdHa/bs2dqyZYuSkpL0zTffZCn21NRUNWzYUHFxcfryyy+1f/9+jR49WnZ2dpKkI0eOqEGDBmrVqpX27NmjhQsXasuWLRYJ1aioqHRJZ39/f4tk/fnz59W5c2dt2bJFW7duVVBQkBo1aqTz589nKd7Bgwdr9OjROnDggMqUKaNRo0Zp3rx5mj59un799Ve98cYbeumll7Rx40ZJNx9GtGzZUk2bNlV8fLy6deumwYMHZ6lN6eZDnp49e+rVV1/V3r17tWLFCgUGBprnt2nTRidPntR3332nX375RRUqVFCdOnWUlHTnnnO3Onz4sL7++mutXLlSa9as0a5du9SjRw+LMrcfIxcuXFD9+vWVN29ebd++XYsWLdL69evN+2bAgAFq27atGjRooMTERCUmJqpatWp3vVy3bt00f/58XblyxRzTl19+qcKFC6t27drmaWPGjFHZsmW1a9cuDR48WH379tW6devueVu1a9dO/fv3V1hYmDmudu3aKTw8XFu2bDGfbxs3blSBAgXMDw1OnDihI0eOKCIiwqZ9kZlRo0bJw8PD/ClatGi21AsAyNyx6IE6MLqV+XPr9Tg8PDynwwMeO9z3AEDOe2ntRVX86rz5w70PcO/sczoAa/LmzauGDRtq/vz5qlOnjiRp8eLFKlCggGrVqiVJGjt2rCIjI83JwzfffFNbt27V2LFjzWVuNX/+fKWmpmrWrFlycnJSWFiY/vrrL73++ut3jOPQoUP67rvvtG3bNlWuXFmSNGvWLIWGht7T+n388ceqVKmSPv30U/O0sLCwdOWmTp2qd955RytXrkx3wXN1ddXMmTPl4OAg6WaCMjU1VTNnzjQPITNnzhx5enoqNjZWzz33nCZMmKAhQ4aoZcuWkqTp06dr7dq1WYp9/fr12rZtmw4cOKDg4GBJUokSJczzR40apQ4dOphflhoUFKRJkyYpPDxc06ZNk5OTkwoUKKCAgACLegMCAlSgQAHz91sTrdLN/1Lw9PTUxo0bLXoTZ2b48OGqV6+epJs9ZEaOHKn169eratWq5ti3bNmiGTNmmGMMCAjQuHHjJEkhISHau3evPvroI5vblKQRI0aof//+6tu3r3la2jG0ZcsWbdu2TSdPnjQPPTR27FgtW7ZMixcv1quvvppp/ZcvX9a8efNUuHBhSdLkyZPVuHFjjRs3Tt7e3pLSHyOff/65eTlXV1dJ0pQpU9S0aVN99NFHKlSokJydnXXlyhVzHZI0d+7cu1quZcuW6tWrl5YvX662bdtKutlLPDIy0mKYo+rVq5sfVgQHBysuLk7jx49XvXr17mlbOTs7y83NTfb29hZx1ahRQ+fPn9euXbtUsWJFbdq0SQMHDjT/90psbKwKFy5s8eDjXgwZMkRvvvmm+fu5c+f4oxIAHhD/yDFy9v6/+5StQ+qaf46Pj+cPSiCbcd8DADnvy/ouCs1nZ/4eOP0vSdz7APfioU6kS1KHDh30yiuv6NNPP5Wjo6NiYmL0wgsvKFeum53pDxw4kC6JVr16dU2cODHD+tJ6JDs5OZmnpSVT7+TAgQOyt7dXxYoVzdNKliwpT0/Pu1yrm+Lj49WmTRurZRYvXqyTJ08qLi7OnIC9VenSpc0JUknavXu3Dh8+LHd3d4tyly9f1pEjR5ScnKzExEQ988wz5nn29vaqVKlSuuFdMou9SJEi5iT67Xbv3q09e/aYh6GRbo5PnpqaqqNHjyo0NFS9evVKN+RH2lAfaf7991+9++67io2N1cmTJ3Xjxg1dvHhRx48ftzlWSapUqZL558OHD+vixYvmxHqaq1evqnz58pJu7vNbt5GU+XFyu5MnT+rvv/82PwS63e7du5WSkqL8+fNbTL906ZKOHDliUxvFihUzJ9HTYkxNTdXBgwfNSePbj5EDBw6obNmy5mS4dPOcSVuuUKFCGbZ1t8s5OTmpY8eOmj17ttq2baudO3dq3759WrFihUW527dv1apVzcMLZce2up2np6fKli2r2NhYOTg4yMHBQa+++qqGDh2qlJQUbdy4MVtvLhwdHR+KdzUAwJPIzsFJdo7/9/srT5485p/d3NxyIiTgscZ9DwDkPJfcJrk5/F/ntbT7H+59gLv30CfSmzZtKsMw9O2336py5cravHmzxo8fn9NhpZOW2L81GX3t2jWryzg7O2dab/ny5bVz507Nnj1blSpVSvei0luTmtLNoWsqVqxokcBO4+XllWl7aXLlypUusX7r+mQWe0pKirp3764+ffqkm1esWDGb4+jcubPOnDmjiRMnys/PT46OjqpatWqWX5p563ZKGw/s22+/tUhCS8rSDX92bCMfHx/zUCK3uteHNLe6/RjJCd26dVO5cuX0119/ac6cOapdu7b8/PxsXv5+bauIiAjFxsbK0dFR4eHhypcvn0JDQ7VlyxZt3LhR/fv3v+u6AQA5z94tn7zCO8jeLd8dy/j4+Gjo0KHy8fF5gJEBAADcH17OJvUq6yAvZ1OG87n3Ae7eQz1GunSzN2vLli0VExOjr776SiEhIapQoYJ5fmhoqOLi4iyWiYuLU6lSpTKsLzQ0VHv27NHly5fN07Zu3Wo1hpIlS+r69ev65ZdfzNMOHjxo8dLQtCT1rW89vvXFoxkpU6ZMuh7YtwsICNCGDRu0fPly9e7d22pZSapQoYISEhJUsGBBBQYGWnzSxsPy8fHRzz//bF7m9nVLW59b1+XcuXM6evSoRex//fWXDh06dMc49u/fny6GwMBAi97RmYmLi1OfPn3UqFEj8ws7T58+bfPyGSlVqpQcHR11/PjxdLGl/ctpaGiotm3bZrHc7ceJl5eX/vnnH4tk+q373N3dXf7+/nfcxxUqVNA///wje3v7dHHcOryNNcePH9fff/9tEWOuXLnMLxXNSGhoqHbv3m3x4te4uDiL5RwcHNKN1X+3y0k3e8VXqlRJn3/+uebPn2/xsuBbY7/9e9rwSfe6re4UV9o46T/88IN5LPSIiAh99dVXOnToULaNjw4AyBm53fOrUERH5XbPf8cyPj4+ioqK4o9JAADwWCjokku9yzmpoEvGKT/ufYC799An0qWbw7t8++23mj17tsWLNiVp4MCBio6O1rRp05SQkKBPPvlES5cuveMLRF988UWZTCa98sor2r9/v1avXq2xY8dabT8kJEQNGjRQ9+7d9fPPP+uXX35Rt27dLHocOzs7q0qVKuYXWm7cuFHvvvuu1XqHDBmi7du3q0ePHtqzZ49+++03TZs2LV2iODg4WBs2bNCSJUvMY47fSYcOHVSgQAE1a9ZMmzdv1tGjRxUbG6s+ffror79ujofVt29fjR49WsuWLdNvv/2mHj16WDwUkG6OTf7FF19o8+bN2rt3rzp37mx+kah0MwFZs2ZNtWrVSuvWrdPRo0f13Xffac2aNZKkt956Sz/++KN69eql+Ph4JSQkaPny5RZDuUyZMiXdsCd16tTRlClTzN+DgoL0xRdf6MCBA/r555/VoUMHm3ryW+Pu7q4BAwbojTfe0Ny5c3XkyBHt3LlTkydP1ty5cyVJr732mhISEjRw4EAdPHhQ8+fPV3R0tEU9EREROnXqlD7++GMdOXJEU6dO1XfffWdRJioqSuPGjdOkSZOUkJBgbkeS6tatq6pVq6p58+b6/vvvdezYMf3444965513tGPHDpvWxcnJSZ07d9bu3bu1efNm9enTR23btrUYC/x2HTp0MC+3b98+bdiwQb1791bHjh3Nw7P4+/trz549OnjwoE6fPq1r167d9XJpunXrptGjR8swDLVo0SJdXHFxcfr444916NAhTZ06VYsWLTKPLX+v28rf319Hjx5VfHy8Tp8+bX7xac2aNXX+/HmtWrXKIpEeExMjHx8f89BFQ4YMUadOncz1bdu2TSVLltSJEyfM024/dgEAAAAAAPD4eCQS6bVr11a+fPl08OBBvfjiixbzmjdvrokTJ2rs2LEKCwvTjBkzNGfOnDv2JHVzc9PKlSu1d+9elS9fXu+8845NL5CcM2eOfH19FR4erpYtW+rVV19VwYIFLcrMnj1b169fV8WKFdWvXz+NGDHCap3BwcH6/vvvtXv3bj399NOqWrWqli9fLnv79CPuhISE6H//+5+++uorq8NNuLi4aNOmTSpWrJhatmyp0NBQde3aVZcvXzaPh9W/f3917NhRnTt3VtWqVeXu7p4usTlkyBCFh4erSZMmaty4sZo3b57uxaBLlixR5cqV1b59e5UqVUqDBg0y9/otU6aMNm7cqEOHDqlGjRoqX7683n//ffn6+pqXP336dLrxrY8cOWLxIGHWrFn677//VKFCBXXs2FF9+vRJt93vxgcffKD33ntPo0aNUmhoqBo0aKBvv/1WxYsXl3Rz+JklS5Zo2bJlKlu2rKZPn66RI0da1BEaGqpPP/1UU6dOVdmyZbVt27Z0D3A6d+6sCRMm6NNPP1VYWJiaNGmihIQESZLJZNLq1atVs2ZNvfzyywoODtYLL7ygP/74447jjd8uMDBQLVu2VKNGjfTcc8+pTJkyFi+vzYiLi4vWrl2rpKQkVa5cWa1bt06XBH7llVcUEhKiSpUqycvLS3FxcXe9XJr27dvL3t5e7du3t3hHQZr+/ftrx44dKl++vEaMGKFPPvlE9evXz5Zt1apVKzVo0EC1atWSl5eXvvrqK0k3X2hcunRpeXl5qWTJkpJuJtdTU1MtxkdPTEy0GJf/4sWLOnjwoMWDgtuPXQAAAAAAADw+TEZW3jAJC/7+/urXr1+mvcSB+yEqKkrLli3LdAihh8WxY8cUEBCg7du3WwzPJD2Z59K5c+fk4eGh0MFLLF6ABwC4//ZG1c/pEICHWtp9SnJyssXLee+1vl/au1u8+A4A8OAERyfndAjAQykr9z0P/ctGATzarl27pjNnzujdd99VlSpV0iXRAQAAAAAAgIfdIzG0C/AkCgsLk5ubW4afmJiYnA7PZnFxcfLx8dH27ds1ffr0+9LG47KtAAAAAAAA8HCiR/o9OHbsWE6HgMfY6tWrLcbgvlWhQoXk7u6uqKioBxvUXYiIiFBmI0jd67mU2bYCAAAAAAAA7gWJdOAh5efnl9MhPDLYVgAAAAAAALifGNoFAAAAAAAAAAArSKQDAAAAAAAAAGAFiXQAAAAAAAAAAKwgkQ4AAAAAAAAAgBUk0gEAAAAAAAAAsIJEOgAAAAAAAAAAVpBIBwAAAAAAAADAChLpAAAAAAAAAABYQSIdAAAAAAAAAAAr7HM6AAB4km0dUld58uTJ6TAAAADuu8Dpf3HfAwAAHln0SAcAAAAAAAAAwAoS6QAAAAAAAAAAWEEiHQAAAAAAAAAAK0ikAwAAAAAAAABgBYl0AAAAAAAAAACsIJEOAAAAAAAAAIAVJNIBAAAAAAAAALCCRDoAAAAAAAAAAFaQSAcAAAAAAAAAwAoS6QAAAAAAAAAAWGGf0wEAAAAAAB5/h18rIjcHU06HAQAAHlLB0ck5HYJV9EgHAAAAAAAAAMAKEukAAAAAAAAAAFhBIh0AAAAAAAAAACtIpAMAAAAAAAAAYAWJdAAAAAAAAAAArCCRDgAAAAAAAACAFSTSAQAAAAAAAACwgkQ6AAAAAAAAAABWkEgHAAAAAAAAAMAKEukAAAAAAAAAAFhBIh0AAAAAAAAAACtIpAMAAAAAAAAAYAWJdAAAAAAAAAAArCCRDgAAAAAAAACAFSTSAQAAAAAAAACwgkQ6cAt/f39NmDAhp8NIJyoqSuXKlTN/j4yMVPPmzR94HBEREerXr98Db/duHTt2TCaTSfHx8TkdCgAAAAAAAB5hJNKBbJZTSW4AAAAAAAAA9weJdOAJc/Xq1ZwOAbfYs2dPTocAAAAAAACQ7U5eTNXk+Ms6eTE1y8smJiYqKipKiYmJ9yGyu0MiHQ/clStX1KdPHxUsWFBOTk569tlntX37dklSbGysTCaTfvjhB1WqVEkuLi6qVq2aDh48aFHH8uXLVaFCBTk5OalEiRIaNmyYrl+/nmnbhmEoKipKxYoVk6Ojo3x9fdWnTx+LMhcvXlSXLl3k7u6uYsWK6bPPPrOYv3fvXtWuXVvOzs7Knz+/Xn31VaWkpEi6OQTL3LlztXz5cplMJplMJsXGxmYa11tvvaXg4GC5uLioRIkSeu+993Tt2rVMl7NFRESEevXqpX79+qlAgQKqX7++JGnfvn1q2LCh3NzcVKhQIXXs2FGnT582L3fhwgV16tRJbm5u8vHx0bhx49LVbTKZtGzZMotpnp6eio6ONn//66+/1L59e+XLl0+urq6qVKmSfv75Z/P8u92XkvTbb7/p2WeflZOTk0qVKqX169dnGFOa6OhoeXp6WkxbtmyZTCaTxbRp06YpICBADg4OCgkJ0RdffJFuvWfOnKkWLVrIxcVFQUFBWrFihU0x3+7AgQN3tRwAAAAAAMDD7NQlQ1N2X9WpS0aWl01MTNSwYcNIpOPJNmjQIC1ZskRz587Vzp07FRgYqPr16yspKclc5p133tG4ceO0Y8cO2dvbq0uXLuZ5mzdvVqdOndS3b1/t379fM2bMUHR0tD788MNM216yZInGjx+vGTNmKCEhQcuWLVPp0qUtyowbN06VKlXSrl271KNHD73++uvmRP6FCxdUv3595c2bV9u3b9eiRYu0fv169erVS5I0YMAAtW3bVg0aNFBiYqISExNVrVq1TONyd3dXdHS09u/fr4kTJ+rzzz/X+PHjbdqetpg7d64cHBwUFxen6dOn6+zZs6pdu7bKly+vHTt2aM2aNfr333/Vtm1b8zIDBw7Uxo0btXz5cn3//feKjY3Vzp07s9RuSkqKwsPDdeLECa1YsUK7d+/WoEGDlJp680nkvezLGzduqHnz5nJxcdHPP/+szz77TO+8807WNkwGvvnmG/Xt21f9+/fXvn371L17d7388svasGGDRblhw4apbdu22rNnjxo1aqQOHTpYHMO3u3Llis6dO2fxAQAAeBxx3wMAAG518ZqhlKuZf269d0jrtPowsc/pAPBkuXDhgqZNm6bo6Gg1bNhQkvT5559r3bp1mjVrlipXrixJ+vDDDxUeHi5JGjx4sBo3bqzLly/LyclJw4YN0+DBg9W5c2dJUokSJfTBBx9o0KBBGjp0qNX2jx8/Lm9vb9WtW1e5c+dWsWLF9PTTT1uUadSokXr06CHpZk/x8ePHa8OGDQoJCdH8+fN1+fJlzZs3T66urpKkKVOmqGnTpvroo49UqFAhOTs768qVK/L29rZ5u7z77rvmn/39/TVgwAAtWLBAgwYNsrkOa4KCgvTxxx+bv48YMULly5fXyJEjzdNmz56tokWL6tChQ/L19dWsWbP05Zdfqk6dOpJuJuOLFCmSpXbnz5+vU6dOafv27cqXL58kKTAw0Dz/XvblunXrdOTIEcXGxpq39Ycffqh69eplKcbbjR07VpGRkeZj4M0339TWrVs1duxY1apVy1wuMjJS7du3lySNHDlSkyZN0rZt29SgQYMM6x01apSGDRt2T7EBAAA8CrjvAQAAt3pp7UXbCn7lcX8DuUck0vFAHTlyRNeuXVP16tXN03Lnzq2nn35aBw4cMCfSy5QpY57v4+MjSTp58qSKFSum3bt3Ky4uzqLX8o0bN3T58mVdvHhRLi4ud2y/TZs2mjBhgkqUKKEGDRqoUaNGatq0qezt/+9UuLVtk8kkb29vnTx5UtLNYTjKli1rTqJLUvXq1ZWamqqDBw+qUKFCd7VdFi5cqEmTJunIkSNKSUnR9evXlSdPnruqKyMVK1a0+L57925t2LBBbm5u6coeOXJEly5d0tWrV/XMM8+Yp+fLl08hISFZajc+Pl7ly5c3J9Fvdy/78uDBgypatKjFA4vbH4rcjQMHDujVV1+1mFa9enVNnDjRYtqtx4mrq6vy5MljPk4yMmTIEL355pvm7+fOnVPRokXvOV4AAICHDfc9AADgVl/Wd1FoPrtMywVO/8v8c3x8vLmT7cOCRDoeSrlz5zb/nDZ+ddpwICkpKRo2bJhatmyZbjknJyer9RYtWlQHDx7U+vXrtW7dOvXo0UNjxozRxo0bzW3e2nZa+2lt3w8//fSTOnTooGHDhql+/fry8PDQggULMhyT/G7dmviXbm7DtF70t/Px8dHhw4dtqtdkMskwLMe5unVsd2dnZ6vL38u+vBu5cuWyGm9WZPU4cXR0lKOj4121BQAA8CjhvgcAANzKJbdJbg6mTMvd2qk0o86fOY0x0vFApb3AMS4uzjzt2rVr2r59u0qVKmVTHRUqVNDBgwcVGBiY7pMrV+aHtLOzs5o2bapJkyYpNjZWP/30k/bu3WtT26Ghodq9e7cuXLhgnhYXF6dcuXKZe2s7ODjoxo0bNtUnST/++KP8/Pz0zjvvqFKlSgoKCtIff/xh8/J3o0KFCvr111/l7++fbhu6uroqICBAuXPntngp6H///adDhw5Z1OPl5WXx0oeEhARdvPh//65TpkwZxcfH33Hs8HvZlyEhIfrzzz/177//mqelvbT2Try8vHT+/HmL/RcfH29RJjQ01OL4lG7uY1uPz6wKDQ29L/UCAAAAAADkJC9nk3qVdZCXc+ZJ9Nv5+Pho6NCh5pEqHgYk0vFAubq66vXXX9fAgQO1Zs0a7d+/X6+88oouXryorl272lTH+++/r3nz5mnYsGH69ddfdeDAAS1YsMBinPE7iY6O1qxZs7Rv3z79/vvv+vLLL+Xs7Cw/Pz+b2u7QoYOcnJzUuXNn7du3Txs2bFDv3r3VsWNH87Au/v7+2rNnjw4ePKjTp09n2uM5KChIx48f14IFC3TkyBFNmjRJ33zzjU3x3K2ePXsqKSlJ7du31/bt23XkyBGtXbtWL7/8sm7cuCE3Nzd17dpVAwcO1P/+9z/t27dPkZGR6ZLbtWvX1pQpU7Rr1y7t2LFDr732mkVP7fbt28vb21vNmzdXXFycfv/9dy1ZskQ//fSTpHvbl/Xq1VNAQIA6d+6sPXv2KC4uzrxc2n8x3O6ZZ56Ri4uL3n77bR05ckTz589XdHS0RZmBAwcqOjpa06ZNU0JCgj755BMtXbpUAwYMyMomttmtQ8QAAAAAAAA8Lgq65FLvck4q6JL1FLSPj4+ioqJIpOPJNnr0aLVq1UodO3ZUhQoVdPjwYa1du1Z58+a1afn69etr1apV+v7771W5cmVVqVJF48ePtykZ7unpqc8//1zVq1dXmTJltH79eq1cuVL58+e3qW0XFxetXbtWSUlJqly5slq3bq06depoypQp5jKvvPKKQkJCVKlSJXl5eaXr3Xy7559/Xm+88YZ69eqlcuXK6ccff9R7771nUzx3y9fXV3Fxcbpx44aee+45lS5dWv369ZOnp6c5WT5mzBjVqFFDTZs2Vd26dfXss8+mG2t93LhxKlq0qGrUqKEXX3xRAwYMsBjX3MHBQd9//70KFiyoRo0aqXTp0ho9erTs7G6Oi3Uv+9LOzk7Lli1TSkqKKleurG7duumdd96RdOdhYfLly6cvv/xSq1evVunSpfXVV18pKirKokzz5s01ceJEjR07VmFhYZoxY4bmzJmjiIgIWzcvAAAAAAAAHjMm4/YBgwHgERUXF6dnn31Whw8fVkBAQE6HY9W5c+fk4eGh5OTkbH2xLAAAwL3K7vuUtPp+ae9u0/ioAADgyRQcnfzA28zKfQ8vGwXwyPrmm2/k5uamoKAgHT58WH379lX16tUf+iQ6AAAAAAAAHi0M7YLHSkxMjNzc3DL8hIWF5UhMI0eOvGNMDRs2vKe6jx8/fse63dzcdPz48WxaiwfPln15/vx59ezZUyVLllRkZKQqV66s5cuX53DkAAAAAAAAeNwwtAseK+fPn9e///6b4bzcuXPb/FLR7JSUlKSkpKQM5zk7O6tw4cJ3Xff169d17NixO8739/eXvf2j+Y8nD+O+zE4M7QIAAB5WDO0CAAByAkO7AA+Qu7u73N3dczoMC/ny5VO+fPnuS9329vYKDAy8L3XntIdxXwIAAAAAAODJxNAuAAAAAAAAAABYQSIdAAAAAAAAAAArSKQDAAAAAAAAAGAFiXQAAAAAAAAAAKwgkQ4AAAAAAAAAgBUk0gEAAAAAAAAAsIJEOgAAAAAAAAAAVpBIBwAAAAAAAADAChLpAAAAAAAAAABYQSIdAAAAAAAAAAAr7HM6AAAAAADA4y9w+l/KkydPTocBAABwV+iRDgAAAAAAAACAFSTSAQAAAAAAAACwgkQ6AAAAAAAAAABWkEgHAAAAAAAAAMAKEukAAAAAAAAAAFhBIh0AAAAAAAAAACtIpAMAAAAAAAAAYAWJdAAAAAAAAAAArCCRDgAAAAAAAACAFfY5HQAAPMmqjFovO0fXnA4DwH2yN6p+TocAAA+Nw68VkZuDKafDAJCNgqOTczoEAHhg6JEOAAAAAAAAAIAVJNIBAAAAAAAAALCCRDoAAAAAAAAAAFaQSAcAAAAAAAAAwAoS6QAAAAAAAAAAWEEiHQAAAAAAAAAAK0ikAwAAAAAAAABgBYl0AAAAAAAAAACsIJEOAAAAAAAAAIAVJNIBAAAAAAAAALCCRDoAAAAAAAAAAFaQSAcAAAAAAAAAwAoS6QAAAAAAAAAAWEEiHQAAAAAAAAAAK0ikAwAAAAAAAABgBYl0AAAAAAAAAACseGgS6SaTScuWLcvw+7Fjx2QymRQfH3/f2o+KilK5cuXM3yMjI9W8eXPz94iICPXr1+++tS/l/DZAetHR0fL09MzpMAAAAAAAAADkoAeWSP/nn3/Uu3dvlShRQo6OjipatKiaNm2qH374QZKUmJiohg0bmsvf/j07jBo1SnZ2dhozZkymZSdOnKjo6OhsaTcqKkomk8n88fDwUI0aNbRx40ary2XnNvD397eIwWQyqUiRIub5//zzjzp27Chvb2+5urqqQoUKWrJkiUUdty5rb2+vYsWK6c0339SVK1fMZU6dOqXXX39dxYoVk6Ojo7y9vVW/fn3FxcVlOU47Ozv5+vqqa9eu+u+//8xlYmNjZTKZdPbs2QyXnzBhQra11a5dOx06dMim+u7V7Q9v0lhb35IlS8rR0VH//PNPlto6evSoXnzxRfn6+srJyUlFihRRs2bN9Ntvv9m0/MaNG1W7dm3ly5dPLi4uCgoKUufOnXX16tV0Zbt37y47OzstWrQo3by7PTdutXv3bj3//PMqWLCgnJyc5O/vr3bt2unkyZPpymZ0DViyZIns7Ox04sSJDOsPCgrSm2++aXM8AJ5c186f0b+xX+ja+TPp5iUmJioqKkqJiYk5EBkAAED2OHkxVZPjL+vkxdR087jfAfC4eyCJ9GPHjqlixYr63//+pzFjxmjv3r1as2aNatWqpZ49e0qSvL295ejoaF7m9u/ZYfbs2Ro0aJBmz56daVkPD49s7YkcFhamxMREJSYm6qefflJQUJCaNGmi5OTkOy6T3dtg+PDh5hgSExO1a9cu87xOnTrp4MGDWrFihfbu3auWLVuqbdu2FmUkac6cOUpMTNTRo0f16aef6osvvtCIESPM81u1aqVdu3Zp7ty5OnTokFasWKGIiAidOZM+qZBZnMePH1dMTIw2bdqkPn363PsGuIu2nJ2dVbBgwfvS9r3asmWLLl26pNatW2vu3Lk2L3ft2jXVq1dPycnJWrp0qQ4ePKiFCxeqdOnSGSbrb7d//341aNBAlSpV0qZNm7R3715NnjxZDg4OunHjhkXZixcvasGCBVbPu7s5N9KcOnVKderUUb58+bR27VodOHBAc+bMka+vry5cuJCufEbXgOeff1758+fPcBtu2rRJhw8fVteuXTONBQCupyTp1MYYXU9JSjcvMTFRw4YN4w9LAADwSDt1ydCU3Vd16pKRbh73OwAedw8kkd6jRw+ZTCZt27ZNrVq1UnBwsMLCwvTmm29q69atkqwPa3K7GzduqEuXLipZsqSOHz9uUwwbN27UpUuXNHz4cJ07d04//vij1fJ36h2c5ttvv5WHh4diYmJsat/e3l7e3t7y9vZWqVKlNHz4cKWkpFjt7Zzd28Dd3d0cg7e3t7y8vMzzfvzxR/Xu3VtPP/20SpQooXfffVeenp765ZdfLOrw9PSUt7e3ihYtqiZNmqhZs2bauXOnJOns2bPavHmzPvroI9WqVUt+fn56+umnNWTIED3//PM2xXhrnIULF1atWrXUuXNncxvZLbO2bh/a5ciRI2rWrJkKFSokNzc3Va5cWevXr7eo89NPP1VQUJCcnJxUqFAhtW7d+r7EPmvWLL344ovq2LGjTQ+H0vz66686cuSIPv30U1WpUkV+fn6qXr26RowYoSpVqmS6/Pfffy9vb299/PHHeuqppxQQEKAGDRro888/l7Ozs0XZRYsWqVSpUho8eLA2bdqkP//8M119d3NupImLi1NycrJmzpyp8uXLq3jx4qpVq5bGjx+v4sWLW5S90zUgd+7c6tixY4b/gTJ79mw988wzCgsLyzSWzFy5ckXnzp2z+AB4PN24elk3rlzQjSsXzOd7SkpKTocFAA8M9z3A4+/iNUMpVw2L85z7HQCPu/ueSE9KStKaNWvUs2dPubq6ppuf1V7fV65cUZs2bRQfH6/NmzerWLFiNi03a9YstW/fXrlz51b79u01a9asLLV7q/nz56t9+/aKiYlRhw4dsrz8lStXNGfOHHl6eiokJOSulr+bbWBNtWrVtHDhQiUlJSk1NVULFizQ5cuXFRERccdlDh06pP/973965plnJElubm5yc3PTsmXLLIZ7uRcnTpzQypUrzW3cT7a0lZKSokaNGumHH37Qrl271KBBAzVt2tT8MGPHjh3q06ePhg8froMHD2rNmjWqWbNmtsd6/vx5LVq0SC+99JK5d/nmzZttWtbLy0u5cuXS4sWL0/Ugt4W3t7cSExO1adOmTMvOmjVLL730kjw8PNSwYcNMh0vK6rnh7e2t69ev65tvvpFhpO8RcXssd7oGdO3aVQkJCRbrlJKSosWLF2dbb/RRo0bJw8PD/ClatGi21Avg4XMseqAOjG6lA6Nbmc/58PDwnA4LAB4Y7nuAx99Lay+q4lfnLc517ncAPO7ueyL98OHDMgxDJUuWvOe6UlJS1LhxY506dUobNmyw6FFtzblz57R48WK99NJLkqSXXnpJX3/99V09LZ06dap69OihlStXqkmTJjYvt3fvXnOi2dnZWWPHjtVXX32lPHnyZKn9u90GkvTWW2+ZY3Bzc9OkSZPM877++mtdu3ZN+fPnl6Ojo7p3765vvvlGgYGBFnW0b99ebm5ucnJyUkhIiMLCwjRkyBBJN3sWR0dHa+7cufL09FT16tX19ttva8+ePVlax7Q4nZ2dVaRIEZlMJn3yySfpyhUpUsRifdzc3GzunZ/VttKULVtW3bt311NPPaWgoCB98MEHCggI0IoVKyRJx48fl6urq5o0aSI/Pz+VL18+S8PSrFq1Kt06ZTRO/oIFCxQUFKSwsDDZ2dnphRdesPnhUOHChTVp0iS9//77yps3r2rXrq0PPvhAv//+u03Lt2nTRu3bt1d4eLh8fHzUokULTZkyJV1Po4SEBG3dulXt2rWTdPO8mzNnTrqE972cG1WqVNHbb7+tF198UQUKFFDDhg01ZswY/fvvvxblMrsGlCpVSlWqVLHo2f/111/LMAy98MILNm2XzAwZMkTJycnmT0a98wE8Hvwjxyh08BKFDl5iPuez8u4HAHjUcd8DPP6+rO+iX9q7W5zr3O8AeNzd90R6Zr1Es6J9+/a6cOGCvv/+e3l4eNi83FdffaWAgACVLVtWklSuXDn5+flp4cKFWWp/8eLFeuONN7Ru3bosP2kNCQlRfHy84uPj9csvv+j1119XmzZttGPHjizVc7fbQJIGDhxojiE+Pl6dOnUyz3vvvfd09uxZrV+/Xjt27NCbb76ptm3bau/evRZ1jB8/XvHx8dq9e7dWrVqlQ4cOqWPHjub5rVq10t9//60VK1aoQYMGio2NVYUKFbL04ta0OPfs2WN+GW3jxo3T9Z7evHmzxfrEx8fL19f3rrZJZm2lSUlJ0YABAxQaGipPT0+5ubnpwIED5gR+vXr15OfnpxIlSqhjx46KiYnRxYsXbY6nVq1a6dZp5syZ6crNnj3bnBSWbiaGFy1apPPnz9vUTs+ePfXPP/8oJiZGVatW1aJFixQWFqZ169ZluqydnZ3mzJmjv/76Sx9//LEKFy6skSNHmsc6vzXG+vXrq0CBApKkRo0aKTk5Wf/73/8s6rvXc+PDDz/UP//8o+nTpyssLEzTp09XyZIlLY5dW64BXbp00eLFi83bcPbs2WrTpo3c3d1tiiMzjo6OypMnj8UHwOPJzsFJdo6usnN0NZ/vbm5uOR0WADww3PcAjz+X3Ca5OZgsznPudwA87u57Ij0oKEgmk0m//fbbPdfVqFEj7dmzRz/99FOWlps1a5Z+/fVX2dvbmz/79+/P0rjSklS+fHl5eXlp9uzZWX5A4ODgoMDAQAUGBqp8+fIaPXq0ChcurAkTJmSpnrvdBpJUoEABcwyBgYHmYXWOHDmiKVOmaPbs2apTp47Kli2roUOHqlKlSpo6dapFHd7e3goMDFRISIgaN26sYcOGaeHChTp8+LC5jJOTk+rVq6f33ntPP/74oyIjIzV06NAsxxkUFKTatWtrwoQJ+vHHH7VhwwaLcsWLF7dYn8DAQNnb29/VNsmsrTQDBgzQN998o5EjR5oT+aVLl9bVq1cl3RxzfefOnfrqq6/k4+Oj999/X2XLlrXpJZ6S5Orqmm6dChcubFFm//792rp1qwYNGmQ+nqtUqWJ+saet3N3d1bRpU3344YfavXu3atSoYfHi2MwULlxYHTt21JQpU/Trr7/q8uXLmj59uqSbY/jPnTtX3377rTlGFxcXJSUlpTvvsuPcyJ8/v9q0aaOxY8fqwIED8vX11dixY83zbbkGpPU8//rrr5WQkKC4uDheMgogS+zd8skrvIPs3fKlm+fj46OhQ4fKx8cnByIDAADIHl7OJvUq6yAvZ1O6edzvAHjcZS3reBfy5cun+vXra+rUqerTp0+6cdLPnj1r8zjpr7/+up566ik9//zz+vbbb23qFb53717t2LFDsbGxypfv//6wTUpKUkREhH777Tebh50JCAjQuHHjFBERITs7O02ZMsWm5e7Ezs5Oly5dytIyd7MNMpPWYzpXLsvnKnZ2dkpNTbW6rJ2dnSRZXY9SpUrd8aWptrCljeySWVtxcXGKjIxUixYtJN3soX7s2DGLMvb29qpbt67q1q2roUOHytPTU//73//UsmXLbIlx1qxZqlmzZrqHHHPmzNGsWbP0yiuvZLlOk8mkkiVLZvoS3jvJmzevfHx8dOHCBUnS6tWrdf78ee3atcu8TSVp3759evnllzM97+/m3Ejj4OCggIAAcyy2XgPc3d3Vpk0bzZ49W0eOHFFwcLBq1KhxVzEAeDLlds+vQhEdM5zn4+OjqKioBxsQAABANivokku9yzllOI/7HQCPu/ueSJdujitevXp1Pf300xo+fLjKlCmj69eva926dZo2bZoOHDhgc129e/fWjRs31KRJE3333Xd69tlnrZafNWuWnn766Qxf+Fi5cmXNmjVLY8aMsbn94OBgbdiwQREREbK3t7e51+z169f1zz//SLr5osiFCxdq//79euutt2xuO01Wt0FmSpYsqcDAQHXv3l1jx45V/vz5tWzZMq1bt06rVq2yKHv27Fn9888/Sk1NVUJCgoYPH67g4GCFhobqzJkzatOmjbp06aIyZcrI3d1dO3bs0Mcff6xmzZrZHM/58+f1zz//yDAM/fnnnxo0aJC8vLxUrVq1e1rP7GgrKChIS5cuVdOmTWUymfTee+9ZPGxYtWqVfv/9d9WsWVN58+bV6tWrlZqaelcvlc3ItWvX9MUXX2j48OF66qmnLOZ169ZNn3zyiX799VeFhYXdsY74+HgNHTpUHTt2VKlSpeTg4KCNGzdq9uzZNh2PM2bMUHx8vFq0aKGAgABdvnxZ8+bN06+//qrJkydLunneNW7c2DyUSppSpUrpjTfeUExMjHr27Cnp3s6NVatWacGCBXrhhRcUHBwswzC0cuVKrV69WnPmzDHHYus1oGvXrqpRo4YOHDhg0f4333yjIUOGWPxnTcmSJTVq1CjzQ5UhQ4boxIkTmjdvXqZxAwAAAAAA4NHyQBLpJUqU0M6dO/Xhhx+qf//+SkxMlJeXlypWrKhp06Zlub5+/fopNTVVjRo10po1a+6Y9Lx69aq+/PLLOybkWrVqpXHjxmnkyJFZaj8kJET/+9//zD3Tx40bl+kyv/76q/nfm1xcXBQQEKBp06ZZjFOeFbZuA1vkzp1bq1ev1uDBg9W0aVOlpKQoMDBQc+fOVaNGjSzKvvzyy5Ju9mD29vZWzZo1NXLkSNnb28vNzU3PPPOMxo8fryNHjujatWsqWrSoXnnlFb399ts2x/P+++/r/ffflyR5eXmpcuXK+v7775U/f/67XsfsauuTTz5Rly5dVK1aNRUoUEBvvfWWxUs2PT09tXTpUkVFReny5csKCgrSV199ZTWxnRUrVqzQmTNnzMnbW4WGhio0NFSzZs2y+sLUIkWKyN/fX8OGDdOxY8dkMpnM3994441MY3j66ae1ZcsWvfbaa/r777/l5uamsLAwLVu2TOHh4fr333/17bffav78+emWzZUrl1q0aKFZs2aZE+n3cm6UKlVKLi4u6t+/v/788085OjoqKChIM2fOVMeOHbN0DcidO7eeffZZhYSE6PDhwxbtJycn6+DBgxbLHjx4UMnJyebviYmJWX7ZLQAAAAAAAB4NJiM73waaTa5cuSInJyetW7dOdevWzelwcgTbAHi8nTt3Th4eHgodvER2jq6ZLwDgkbQ3qn5OhwAAWZZ2n5KcnJwtLwpNq++X9u5yc0g/rjKAR1dwdHLmhQDgIZaV+54H0iM9K86dO6elS5cqV65cNo9d/rhhGwAAAAAAAADAwyNX5kUerKFDh+qtt97SRx99pCJFimRaPiYmRm5ubhl+sms4jczcqX03Nzdt3rw5y/U9itvAFg8yzodtmxw/ftzqcZKdQ4Js3rzZaluZGTly5B2XbdiwYbbFaYuHbT8CAAAAAADgyfRQDu2SFefPn9e///6b4bzcuXPLz8/vvsdw+PDhO84rXLiwnJ2d72v7D8M2sMWDjPNh2ybXr1/XsWPH7jjf399f9vbZ8w8ily5d0okTJ+44PzAw0OrySUlJSkpKynCes7OzChcufE/xZcXDth+zE0O7AE8GhnYB8ChiaBcAtmJoFwCPukd6aJescnd3l7u7e47GkFli8n57GLaBLR5knA/bNrG3t39gx4mzs/M9tZUvXz7ly5cvGyO6ew/bfgQAAAAAAMCT6aEb2gUAAAAAAAAAgIcJiXQAAAAAAAAAAKwgkQ4AAAAAAAAAgBUk0gEAAAAAAAAAsIJEOgAAAAAAAAAAVpBIBwAAAAAAAADAChLpAAAAAAAAAABYQSIdAAAAAAAAAAArSKQDAAAAAAAAAGCFfU4HAABPsq1D6ipPnjw5HQYAAMB9Fzj9L+57AADAI4se6QAAAAAAAAAAWEEiHQAAAAAAAAAAK0ikAwAAAAAAAABgBYl0AAAAAAAAAACsIJEOAAAAAAAAAIAVJNIBAAAAAAAAALCCRDoAAAAAAAAAAFaQSAcAAAAAAAAAwAoS6QAAAAAAAAAAWEEiHQAAAAAAAAAAK+xzOgAAeJJVGbVedo6uOR0G8MTZG1U/p0MAgCfO4deKyM3BlNNhAE+U4OjknA4BAB4b9EgHAAAAAAAAAMAKEukAAAAAAAAAAFhBIh0AAAAAAAAAACtIpAMAAAAAAAAAYAWJdAAAAAAAAAAArCCRDgAAAAAAAACAFSTSAQAAAAAAAACwgkQ6AAAAAAAAAABWkEgHAAAAAAAAAMAKEukAAAAAAAAAAFhBIh0AAAAAAAAAACtIpAMAAAAAAAAAYAWJdAAAAAAAAAAArCCRDgAAAAAAAACAFSTSAQAAAAAAAACwgkQ6AJsZhqFXX31V+fLlk8lkUnx8/D3XGRkZqebNm9tUNiIiQv369bvnNu8Hf39/TZgwIafDAAAAAAAAwH1gn9MBAHh0rFmzRtHR0YqNjVWJEiVUoECBnA4JAAAAAAAAuO/okQ7AZkeOHJGPj4+qVasmb29v2ds/2s/irl69mtMhAHjArp0/o39jv1BiYqISExMVFRWlxMTEnA4LAAAg25y8mKrJ8Zd18mIq9zsAkI1IpAOwSWRkpHr37q3jx4/LZDLJ399fAwYMUJMmTcxlJkyYIJPJpDVr1pinBQYGaubMmZKkGzdu6M0335Snp6fy58+vQYMGyTCMu47p22+/lYeHh2JiYiRJf/75p9q2bStPT0/ly5dPzZo107FjxyzWoXnz5vrwww/l6+urkJAQHTt2TCaTSUuXLlWtWrXk4uKismXL6qeffrJoa8uWLapRo4acnZ1VtGhR9enTRxcuXLjr2AHkjOspSTq1McacSB82bBh/WAIAgMfKqUuGpuy+qlOXDO53ACAbkUgHYJOJEydq+PDhKlKkiBITE7V9+3aFh4dry5YtunHjhiRp48aNKlCggGJjYyVJJ06c0JEjRxQRESFJGjdunKKjozV79mxt2bJFSUlJ+uabb+4qnvnz56t9+/aKiYlRhw4ddO3aNdWvX1/u7u7avHmz4uLi5ObmpgYNGlj0PP/hhx908OBBrVu3TqtWrTJPf+eddzRgwADFx8crODhY7du31/Xr1yXd7InfoEEDtWrVSnv27NHChQu1ZcsW9erVy+Z4r1y5onPnzll8AOSclJQUpaSk5HQYAPBY4r4HeDhcvGZwvwMA2YhEOgCbeHh4yN3dXXZ2dvL29paXl5dq1Kih8+fPa9euXTIMQ5s2bVL//v3NifTY2FgVLlxYgYGBkm72WB8yZIhatmyp0NBQTZ8+XR4eHlmOZerUqerRo4dWrlxp7hG/cOFCpaamaubMmSpdurRCQ0M1Z84cHT9+3ByPJLm6umrmzJkKCwtTWFiYefqAAQPUuHFjBQcHa9iwYfrjjz90+PBhSdKoUaPUoUMH9evXT0FBQapWrZomTZqkefPm6fLlyzbFPGrUKHl4eJg/RYsWzfJ6A8g+4eHhCg8Pz+kwAOCxxH0P8HB4ae1F7ncAIBuRSAdw1zw9PVW2bFnFxsZq7969cnBw0Kuvvqpdu3YpJSVFGzduNN+4JScnKzExUc8884x5eXt7e1WqVClLbS5evFhvvPGG1q1bZ3FTuHv3bh0+fFju7u5yc3OTm5ub8uXLp8uXL+vIkSPmcqVLl5aDg0O6esuUKWP+2cfHR5J08uRJc93R0dHmet3c3FS/fn2lpqbq6NGjNsU9ZMgQJScnmz9//vlnltYbQPbauHGjNm7cmNNhAMBjifse4OHwZX0X7ncAIBs92m8KBJDjIiIiFBsbK0dHR4WHhytfvnwKDQ3Vli1btHHjRvXv3z9b2ytfvrx27typ2bNnq1KlSjKZTJJuDtNQsWJF83jpt/Ly8jL/7OrqmmG9uXPnNv+cVmdqaqq57u7du6tPnz7plitWrJhNcTs6OsrR0dGmsgDuPzc3t5wOAQAeW9z3AA8Hl9wm7nkAIBuRSAdwT8LDwzV79mzZ29urQYMGkm4m17/66isdOnTIPD66h4eHfHx89PPPP6tmzZqSpOvXr+uXX35RhQoVbG4vICBA48aNU0REhOzs7DRlyhRJUoUKFbRw4UIVLFhQefLkydZ1rFChgvbv328eogbAo8veLZ+8wjuY//Nk6NCh5p8BAAAeB17OJvUq6yAvZ5N8fHy43wGAbMLQLgDuSc2aNXX+/HmtWrXKnDSPiIhQTEyMfHx8FBwcbC7bt29fjR49WsuWLdNvv/2mHj166OzZs1luMzg4WBs2bNCSJUvUr18/SVKHDh1UoEABNWvWTJs3b9bRo0cVGxurPn366K+//rqndXzrrbf0448/qlevXoqPj1dCQoKWL1+epZeNAng45HbPr0IRHeXj4yMfHx9FRUXxhyUAAHisFHTJpd7lnFTQJRf3OwCQjUikA7gnefPmVenSpeXl5aWSJUtKuplcT01NTfdim/79+6tjx47q3LmzqlatKnd3d7Vo0eKu2g0JCdH//vc/ffXVV+rfv79cXFy0adMmFStWzPwy065du+ry5cv33EO9TJky2rhxow4dOqQaNWqofPnyev/99+Xr63tP9QIAAAAAAODRYDIMw8jpIADgSXPu3Dl5eHgodPAS2TlmPG47gPtnb1T9nA4BAB5aafcpycnJ2TJkXlp9v7R3l5uDKRsiBGCr4OjknA4BAB5qWbnvoUc6AAAAAAAAAABWkEgHYHb8+HG5ubnd8XP8+PHHsm0AAAAAAADAGvucDgDAw8PX11fx8fFW5z+ObQMAAAAAAADWkEgHYGZvb6/AwMAnrm0AAAAAAADAGoZ2AQAAAAAAAADAChLpAAAAAAAAAABYQSIdAAAAAAAAAAArSKQDAAAAAAAAAGAFiXQAAAAAAAAAAKwgkQ4AAAAAAAAAgBUk0gEAAAAAAAAAsIJEOgAAAAAAAAAAVpBIBwAAAAAAAADAChLpAAAAAAAAAABYYZ/TAQDAk2zrkLrKkydPTocBAABw3wVO/4v7HgAA8MiiRzoAAAAAAAAAAFaQSAcAAAAAAAAAwAoS6QAAAAAAAAAAWEEiHQAAAAAAAAAAK0ikAwAAAAAAAABgBYl0AAAAAAAAAACsIJEOAAAAAAAAAIAVJNIBAAAAAAAAALCCRDoAAAAAAAAAAFbY53QAAPAkqzJqvewcXXM6DCDH7I2qn9MhAAAekMOvFZGbgymnwwByVHB0ck6HAAC4S/RIBwAAAAAAAADAChLpAAAAAAAAAABYQSIdAAAAAAAAAAArSKQDAAAAAAAAAGAFiXQAAAAAAAAAAKwgkQ4AAAAAAAAAgBUk0gEAAAAAAAAAsIJEOgAAAAAAAAAAVpBIBwAAAAAAAADAChLpAAAAAAAAAABYQSIdAAAAAAAAAAArSKQDAAAAAAAAAGAFiXQAAAAAAAAAAKwgkQ4AAAAAAAAAgBUk0gEAAAAAAAAAsIJEOgAAAAAAAAAAVjwUiXSTyaRly5bdcf6xY8dkMpkUHx//wGLKbpmt46MoIiJC/fr1e2DtRUZGqnnz5g+8/dvbfRJcvHhRrVq1Up48eWQymXT27NmcDumePI7nHwAAAAAAAB6chyKRnpiYqIYNG+Z0GI+MqKgolStXLt30+5UsjI2NzTCZunTpUn3wwQfZ3l52eO2112QymTRhwoR7rmvixImKjo62ufyff/6pLl26yNfXVw4ODvLz81Pfvn115swZi3IZPQiYOHGiHB0dtWDBApUuXVqvvfZahm188cUXcnR01OnTp7O6OjaZO3euNm/erB9//FGJiYny8PC4L+1I0qZNm9S0aVP5+vpaPYYPHDig559/Xh4eHnJ1dVXlypV1/Pjx+xYXgPvr2vkz+nvtZ+rfv78SExNzOhwAAID75uTFVE2Ov6yTF1OVmJioqKgo7n8A4BH0UCTSvb295ejomNNhIIvy5csnd3f3nA4jnW+++UZbt26Vr69vttTn4eEhT09Pm8r+/vvvqlSpkhISEvTVV1/p8OHDmj59un744QdVrVpVSUlJd1x26NChevvtt7V8+XK98MIL6tq1qxYsWKBLly6lKztnzhw9//zzKlCgwN2ullVHjhxRaGionnrqKXl7e8tkMt2XdiTpwoULKlu2rKZOnWo1nmeffVYlS5ZUbGys9uzZo/fee09OTk73LS4A99f1lCQlbV2qTz75hD8kAQDAY+3UJUNTdl/VqUuGEhMTNWzYMO5/AOARdE+J9M8++0y+vr5KTU21mN6sWTN16dLF/H3atGkKCAiQg4ODQkJC9MUXX1iUv70X6rZt21S+fHk5OTmpUqVK2rVrV6ax+Pv764MPPlD79u3l6uqqwoULp0vMffLJJypdurRcXV1VtGhR9ejRQykpKRZlPv/8cxUtWlQuLi5q0aKFPvnkk3RJ1OXLl6tChQpycnJSiRIlNGzYMF2/ft08PyEhQTVr1pSTk5NKlSqldevWZRr/rd566y0FBwfLxcVFJUqU0Hvvvadr165JkqKjozVs2DDt3r1bJpNJJpNJ0dHR8vf3lyS1aNFCJpPJ/N2WeE0mk2bOnKkWLVrIxcVFQUFBWrFihaSbw+rUqlVLkpQ3b16ZTCZFRkZKSt+j+r///lOnTp2UN29eubi4qGHDhkpISDDPj46Olqenp9auXavQ0FC5ubmpQYMG2XoDceLECfXu3VsxMTHKnTu3xby0IYK+/vpr1ahRQ87OzqpcubIOHTqk7du3q1KlSnJzc1PDhg116tQp83JZGdqlZ8+ecnBw0Pfff6/w8HAVK1ZMDRs21Pr163XixAm988476ZYxDEO9e/fWpEmTtG7dOjVo0ECS9NJLL+nSpUtasmSJRfmjR48qNjZWXbt2zTSetG2+atUqhYSEyMXFRa1bt9bFixc1d+5c+fv7K2/evOrTp49u3Lgh6eZ+HTdunDZt2iSTyaSIiAhJN8+xESNGqFOnTnJzc5Ofn59WrFihU6dOqVmzZnJzc1OZMmW0Y8cOc/tnzpxR+/btVbhwYbm4uKh06dL66quvLGJs2LChRowYoRYtWtxxPd555x01atRIH3/8scqXL6+AgAA9//zzKliwYKbbICNDhw6Vj4+P9uzZI0nasmWL+ZgoWrSo+vTpowsXLtxV3Xdy5coVnTt3zuIDAADwOOK+B8jYxWtGuhwEAODRcU+J9DZt2ujMmTPasGGDeVpSUpLWrFmjDh06SLrZO7hv377q37+/9u3bp+7du+vll1+2WOZWKSkpatKkiUqVKqVffvlFUVFRGjBggE3xjBkzRmXLltWuXbs0ePBg9e3b1yKJnStXLk2aNEm//vqr5s6dq//9738aNGiQeX5cXJxee+019e3bV/Hx8apXr54+/PBDizY2b96sTp06qW/fvtq/f79mzJih6Ohoc7nU1FS1bNlSDg4O+vnnnzV9+nS99dZbtm3Q/8/d3V3R0dHav3+/Jk6cqM8//1zjx4+XJLVr1079+/dXWFiYEhMTlZiYqHbt2mn79u2SbvZUTkxMNH/PLN40w4YNU9u2bbVnzx41atRIHTp0UFJSkooWLWpO5B48eFCJiYmaOHFihnFHRkZqx44dWrFihX766ScZhqFGjRqZHwJIN8feHjt2rL744gtt2rRJx48ft3n/ZiY1NVUdO3bUwIEDFRYWdsdyQ4cO1bvvvqudO3fK3t5eL774ogYNGqSJEydq8+bNOnz4sN5///0st5+UlKS1a9eqR48ecnZ2tpjn7e2tDh06aOHChTIMwzz9+vXreumll7R48WJt3LhR1apVM88rUKCAmjVrptmzZ1vUFR0drSJFiui5556zKa6LFy9q0qRJWrBggdasWaPY2Fi1aNFCq1ev1urVq/XFF19oxowZWrx4saSbQ/a88sorqlq1qhITE7V06VJzXePHj1f16tW1a9cuNW7cWB07dlSnTp300ksvaefOnQoICFCnTp3M63j58mVVrFhR3377rfbt26dXX31VHTt21LZt22zerqmpqfr2228VHBys+vXrq2DBgnrmmWfuahijtIcW8+bN0+bNm1WmTBkdOXJEDRo0UKtWrbRnzx4tXLhQW7ZsUa9evbJcvzWjRo2Sh4eH+VO0aNFsrR8AAOBhwX0PkLGX1l5UeHh4TocBALhL95RIz5s3rxo2bKj58+ebpy1evFgFChQw92IeO3asIiMj1aNHDwUHB+vNN99Uy5YtNXbs2AzrnD9/vlJTUzVr1iyFhYWpSZMmGjhwoE3xVK9eXYMHD1ZwcLB69+6t1q1bmxPQktSvXz/VqlVL/v7+ql27tkaMGKGvv/7aPH/y5Mlq2LChBgwYoODgYPXo0SPd2O3Dhg3T4MGD1blzZ5UoUUL16tXTBx98oBkzZkiS1q9fr99++03z5s1T2bJlVbNmTY0cOdK2Dfr/vfvuu6pWrZr8/f3VtGlTDRgwwByns7Oz3NzcZG9vL29vb3l7e8vZ2VleXl6SJE9PT3l7e5u/ZxZvmsjISLVv316BgYEaOXKkUlJStG3bNtnZ2SlfvnySpIIFC8rb2zvD8bITEhK0YsUKzZw5UzVq1FDZsmUVExOjEydOWCQ8r127punTp6tSpUqqUKGCevXqpR9++CFL2+dOPvroI9nb26tPnz5Wyw0YMED169dXaGio+vbtq19++UXvvfeeqlevrvLly6tr1653fNBjTUJCggzDUGhoaIbzQ0ND9d9//1n0dv/888+1ePFibdiwQWXKlEm3TNeuXRUbG6ujR49KupkInjt3rjp37qxcuWw7fa9du6Zp06apfPnyqlmzplq3bq0tW7Zo1qxZKlWqlJo0aaJatWqZ1zlfvnxycXGRg4ODvL29zftfkho1aqTu3bsrKChI77//vs6dO6fKlSurTZs2Cg4O1ltvvaUDBw7o33//lSQVLlxYAwYMULly5VSiRAn17t1bDRo0sDjvMnPy5EmlpKRo9OjRatCggb7//nu1aNFCLVu21MaNG22uJ+2hxQ8//KAtW7YoMDBQ0s0/9Dp06KB+/fopKChI1apV06RJkzRv3jxdvnzZ5vozM2TIECUnJ5s/f/75Z7bVDQAA8DDhvgfI2Jf1XbL0NwwA4OFyz2Okd+jQQUuWLNGVK1ckSTExMXrhhRfMSb4DBw6oevXqFstUr15dBw4cyLC+AwcOqEyZMhZjH1etWtWmWG4vV7VqVYt21q9frzp16qhw4cJyd3dXx44ddebMGV28eFHSzR7XTz/9tEUdt3/fvXu3hg8fLjc3N/PnlVdeUWJioi5evKgDBw6oaNGiFuNz2xp/moULF6p69ery9vaWm5ub3n333bt+qWJm8aa5NYnr6uqqPHny6OTJkza3c+DAAdnb2+uZZ54xT8ufP79CQkIs9oGLi8v/Y+/Ow2O6+/+Pv0ZCEiYSS0jEEmQRsRfVqrXcscfSICqqtFW1tFQtbRFaS2trVdFvJaGa2pdbUbUVEXWrJeQmglRKNSk3FWIn+f3hyvyMJJMZQlSfj+ua6zJzPsv7fGbOOHmfz3yOKleubHru4eFhUz852bdvn+mmoLmt533vvpYuXVqSVL16dbPXHiame2ecZ6dQoUKmf7/wwgsyGo0aPXq02XI7mVq2bKmyZcsqMjJSkrRlyxadOnVKr776qtXx3D/mpUuXlpeXl4xGo9lr1uyzNWMnydTWnTt39NFHH6l69eoqXry4jEajfvzxR5s+z5lLRwUFBWnIkCGqVauWRo4cqXbt2mnu3LlWtzNkyBD95z//0Y4dO+Tp6Wl6/eDBg5o/f77ZMRIYGKj09HTTBYy84ODgoKJFi5o9AAAAnkac9wDZK1zQYPZ3GADg7+WhE+nt27dXRkaG1q1bp9OnTys6Otq0rMuTJCkpSe3atVONGjW0YsUK7du3z7SG+s2bN61uJy0tTePGjVNsbKzpERcXp+PHj+fJjQ9//vlnvfzyy2rTpo3Wrl2rAwcO6IMPPrApxgeJ9/71xA0GQ5a17/NCdv3klni2RnR0tM6ePavy5cvL3t5e9vb2+u233/Tuu++arRd/fwyZSff7X3uQfff29pbBYLB4kcjNzc1szf3q1atry5Yt+umnn9StW7csyfQCBQqod+/eWrBggdLT0xUZGalmzZqpUqVKVseV3Zg/6PttzdhJ/z/5PWXKFH3++ecaMWKEfvrpJ8XGxiowMNCmz3PJkiVlb2+vqlWrmr3u7+9vU0K+ZcuWOnPmjH788Uez19PS0tSvXz+zY+TgwYM6fvy42QUIAHnL3lhcxRt01tChQ+Xh4ZHf4QAAADwybk4GDaxZSG5OBnl4eJju2QQA+Huxf9gGHB0d1blzZ0VFRenEiRPy8/NTnTp1TNv9/f0VExOjV155xfRaTExMlqTYveUXLlyo69evmxK9u3fvtiqW+8vt3r3btMzGvn37lJ6ermnTpplmy9+/vISfn59pbfFM9z+vU6eOEhISTMtCZBf/6dOnlZycbPqP0dr4JWnXrl2qUKGC2U0pf/vtN7MyhQoVMt0Y8l4FCxbM8npu8VojcwZ1dn1m8vf31+3bt/Wf//zHtM73+fPnlZCQkON7nZdCQ0PVokULs9cCAwMVGhpq0+zth1GiRAm1bNlSs2fP1pAhQ8zWSU9JSVFUVJQGDBiQpV6tWrW0ZcsWtWjRQl27dtWSJUvMktOvvvqqPv74Y61cuVKrVq3SvHnzHsv+5IWYmBgFBQWpZ8+eku4m2I8dO2bTZ6JQoUKqV6+eEhISzF4/duyYKlSoYHU7HTp0UPv27dWjRw/Z2dmpe/fuku4eI0eOHHmoYwSA7Qo6l1CZwDc0LSwwv0MBAAB4pEoVLqBBte7mNzw8PBQWFpa/AQEAHshDz0iX7i7vsm7dOkVERGSZjf7ee+9p/vz5mjNnjo4fP67p06dr5cqVOd5gskePHjIYDHr99dd15MgRrV+/Psf11O8XExOjTz/9VMeOHdOXX36pZcuW6e2335Z0d7bwrVu39MUXX+jXX3/VwoULsywLMWjQIK1fv17Tp0/X8ePH9dVXX+mHH34wWypkzJgx+uabbzRu3DgdPnxY8fHxWrx4sT788ENJUosWLeTr66tXXnlFBw8eVHR0tFlSPDc+Pj46deqUFi9erMTERM2cOVOrVq0yK+Pl5aWTJ08qNjZW//vf/0zL6nh5eWnLli1KSUnRX3/9ZVW81qhQoYIMBoPWrl2rc+fOZXuXcR8fHwUFBen111/Xzp07dfDgQfXs2VOenp4KCgqyuq8HVaJECVWrVs3sUbBgQbm7u8vPz++R959p1qxZunHjhgIDA7Vjxw6dPn1aGzZsUMuWLeXr65vjTUxr1qyprVu3aufOneratavZDVorVqyo5s2b64033pCDg4M6d+78uHbnofn4+GjTpk3atWuX4uPj1a9fP9P66ZnS0tJMM8ElmT7b9842f++997RkyRJ9/fXXOnHihGbNmqXvv/9eb731lk3xdOrUSQsXLtSrr75qurnqiBEjtGvXLg0cOFCxsbE6fvy4/v3vf5vdbHTUqFHq1auX6fmePXtUpUoVnTlzxvTaiy++qFmzZtkUDwAAAAAAAP4e8iSR3rx5cxUvXlwJCQnq0aOH2baOHTvq888/19SpUxUQEKCvvvpKkZGRatq0abZtGY1Gff/994qLi1Pt2rX1wQcf6JNPPrEqjnfffVd79+5V7dq19fHHH2v69OkKDLw7061mzZqaPn26PvnkE1WrVk1RUVGaNGmSWf2GDRtq7ty5mj59umrWrKkNGzZoyJAhZkugBAYGau3atdq4caPq1aunBg0aaMaMGaaZsQUKFNCqVat07do11a9fX6+99pomTJhg7VCqQ4cOGjJkiAYOHKhatWpp165dGj16tFmZLl26qFWrVmrWrJnc3Ny0aNEiSdK0adO0adMmlStXTrVr17YqXmt4enqablpaunRpswTjvSIjI/XMM8+oXbt2eu6555SRkaH169dnWUbkaebj46NffvlFlSpVUteuXVWhQgW1bt1avr6+iomJsbgeXvXq1bV161bt2rVLwcHBZsuf9O3bV3/99Zd69OiRJ0sIPS4ffvih6tSpo8DAQDVt2lTu7u7q2LGjWZnMYzbzMzt06FDVrl3b7KJDp06dNHfuXH366aeqXr265s2bpxUrVuiFF16wOaaXXnpJCxYsUGhoqFauXKkaNWpo+/btOnbsmBo1amTq+977HCQnJ5sl9q9evaqEhASzCx6JiYn63//+Z3M8AAAAAAAAePIZMvJigeongJeXl9555x298847edru66+/rqNHjyo6OjpP28U/x9ixYzV9+nRt2rRJDRo0yO9w8IS4dOmSXFxc5D9yhewciuR3OEC+iWNpFwB44mSep6SmpubJjUIz29sX4ixjIUPuFYCnmO/81PwOAQBwD1vOex56jfSnzdSpU9WyZUsVKVJEP/zwgxYsWKDZs2fnd1j4Gxs3bpy8vLy0e/du1a9f37RGPwAAAAAAAIC/BzJ699mzZ49atmyp6tWra+7cuZo5c6Zee+21PGt/4sSJMhqN2T5at26dZ/38HeU0Lkaj8Yn4RcCpU6csxnjv0h/3e/XVV/XOO+/keRK9devWOcYzceLEPO3rSRUVFZXjGAQEBOR3eAAAAAAAAHgKPDUz0pOSkvKknaVLl+ZJOzl588031bVr12y3OTk5PdK+n3SZN5vMjqen5+MLJAdlypSxGOO9a2o/LvPmzdO1a9ey3Va8ePHHHE3+6NChg5599tlst/2T1ucHAAAAAADAo/PUJNL/LooXL/6PSXDaytvbO79DsMje3v6Ji/FJuMCQ35ydneXs7JzfYQAAAAAAAOApxtIuAAAAAAAAAABYQCIdAAAAAAAAAAALSKQDAAAAAAAAAGABiXQAAAAAAAAAACwgkQ4AAAAAAAAAgAUk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFpBIBwAAAAAAAADAAhLpAAAAAAAAAABYYJ/fAQDAP9nuUS1UtGjR/A4DAADgkfOe+zvnPQAA4G+LGekAAAAAAAAAAFhAIh0AAAAAAAAAAAtIpAMAAAAAAAAAYAGJdAAAAAAAAAAALCCRDgAAAAAAAACABSTSAQAAAAAAAACwgEQ6AAAAAAAAAAAWkEgHAAAAAAAAAMACEukAAAAAAAAAAFhAIh0AAAAAAAAAAAvs8zsAAPgnazBps+wciuR3GAAeg7iwwPwOAQAAAADwgJiRDgAAAAAAAACABSTSAQAAAAAAAACwgEQ6AAAAAAAAAAAWkEgHAAAAAAAAAMACEukAAAAAAAAAAFhAIh0AAAAAAAAAAAtIpAMAAAAAAAAAYAGJdAAAAAAAAAAALCCRDgAAAAAAAACABSTSAQAAAAAAAACwgEQ6AAAAAAAAAAAWkEgHAAAAAAAAAMACEukAAAAAAAAAAFhAIh0AAAAAAAAAAAtIpAMAAAAAAAAAYMFTlUg3GAxavXp1jtuTkpJkMBgUGxv7wH307t1bHTt2ND1v2rSp3nnnnQdu759i27ZtMhgMunjxYp61ef978Xfxd40bAAAAAAAA+Kd6qhLpycnJat26dX6Hgcfk888/1/z58/M7jL+1W7duacSIEapevbqKFCmiMmXKqFevXvrjjz+sbiO3C1gAAAAAAADA391TlUh3d3eXg4NDfofxRLh582Z+h/DIubi4yNXVNV/6flrG9+rVq9q/f79Gjx6t/fv3a+XKlUpISFCHDh3yO7Q8cfPmTaWkpOR3GAD+AW5dPq8/ty3Urcvn8zsUmyUnJyssLEzJycn5HQqAp9yhQ4fyOwQAAIAH9kQk0v/v//5PZcqUUXp6utnrQUFB6tOnj+n5nDlzVLlyZRUqVEh+fn5auHChWfn7Z8bu2bNHtWvXlqOjo+rWrasDBw5YjOP999/Xs88+m+X1mjVravz48Vbti5eXlz7++GP16tVLRqNRFSpU0Jo1a3Tu3DkFBQXJaDSqRo0a2rt3r1Xt3ev3339XSEiIihcvriJFiqhu3br6z3/+I0kKCwtTrVq1NG/ePFWsWFGOjo6SpFOnTpn6LVq0qLp27ao///zT1ObBgwfVrFkzOTs7q2jRonrmmWdMsf32229q3769ihUrpiJFiiggIEDr16+3Ktb169fL19dXTk5OatasmZKSkrKU2blzpxo1aiQnJyeVK1dOgwcP1pUrVyRZ917cv0RKenq6Pv30U3l7e8vBwUHly5fXhAkTTNtPnz6trl27ytXVVcWLF1dQUFC2cWUns68JEyaoTJky8vPzs6rNO3fuaOjQoXJ1dVWJEiU0fPhwZWRkmLXt5eWlzz77zOy1WrVqKSwszPT84sWL6tevn0qXLi1HR0dVq1ZNa9eutWosLXFxcdGmTZvUtWtX+fn5qUGDBpo1a5b27dunU6dOSbqbjB44cKA8PDzk6OioChUqaNKkSabYJalTp04yGAym54mJiQoKClLp0qVlNBpVr149bd682azv5ORktW3bVk5OTqpYsaK+++67LGNx8eJFvfbaa3Jzc1PRokXVvHlzHTx4MNf92rdvnwYNGqQyZcpoyZIluZYHgId1O+2Czm2P0u20C/kdis2Sk5M1btw4EukAHrn4+Pj8DgEAAOCBPRGJ9ODgYJ0/f14//fST6bULFy5ow4YNevnllyVJq1at0ttvv613331X//3vf9WvXz+9+uqrZnXulZaWpnbt2qlq1arat2+fwsLCNGzYMItxvPzyy9qzZ48SExNNrx0+fFiHDh1Sjx49rN6fGTNmqGHDhjpw4IDatm2r0NBQ9erVSz179tT+/ftVuXJl9erVyyyhajAYzJYpmT9/vgwGg9n+NGnSRGfOnNGaNWt08OBBDR8+3Oziw4kTJ7RixQqtXLlSsbGxSk9PV1BQkC5cuKDt27dr06ZN+vXXX9WtWzezfS5btqx++eUX7du3TyNHjlTBggUlSQMGDNCNGze0Y8cOxcXF6ZNPPpHRaMx1/0+fPq3OnTurffv2io2N1WuvvaaRI0ealUlMTFSrVq3UpUsXHTp0SEuWLNHOnTs1cOBAU1y2vhejRo3S5MmTNXr0aB05ckTfffedSpcuLenuEiaBgYFydnZWdHS0YmJiZDQa1apVK6tnl2/ZskUJCQnatGmT1q5da1Wb06ZN0/z58xUREaGdO3fqwoULWrVqlVX9ZUpPT1fr1q0VExOjb7/9VkeOHNHkyZNlZ2dn1VjaKjU1VQaDwTTbf+bMmVqzZo2WLl2qhIQERUVFmRLmv/zyiyQpMjJSycnJpudpaWlq06aNtmzZogMHDqhVq1Zq3769KTkvybSEzLZt27RixQr93//9n86ePWsWS3BwsM6ePasffvhB+/btU506dfTiiy/qwoWsiark5GRNmTJF1apV0/PPP68zZ85o3rx5euuttx5oHPLajRs3dOnSJbMHgKfPnZvXdefGlWwf938HPCmPtLS0/B42AE8ZznsAAMDTyD6/A5CkYsWKqXXr1vruu+/04osvSpKWL1+ukiVLqlmzZpKkqVOnqnfv3qak2NChQ7V7925NnTrVVOZe3333ndLT0xUeHi5HR0cFBATo999/V//+/XOMIyAgQDVr1tR3332n0aNHS5KioqL07LPPytvb2+r9adOmjfr16ydJGjNmjObMmaN69eopODhYkjRixAg999xz+vPPP+Xu7i5J8vPzk4uLi6kNFxcX06znzP05d+6cfvnlFxUvXlySssR08+ZNffPNN3Jzc5Mkbdq0SXFxcTp58qTKlSsnSfrmm28UEBCgX375RfXq1dOpU6f03nvvqUqVKpIkHx8fU3unTp1Sly5dVL16dUlSpUqVrNr/zF8OTJs2zbRvmYn4TJMmTdLLL79sulGrj4+PZs6cqSZNmmjOnDk2vxeXL1/W559/rlmzZumVV16RJFWuXFkvvPCCJGnJkiVKT0/XvHnzTBcoIiMj5erqqm3btulf//pXrvtVpEgRzZs3T4UKFZIkffvtt7m2+dlnn2nUqFHq3LmzJGnu3Ln68ccfrRrHTJs3b9aePXsUHx8vX19fSebvRW5jmfnrBGtcv35dI0aMUEhIiIoWLSrp7ufAx8dHL7zwggwGgypUqGAqn/lZc3V1NX2Wpbu/HKhZs6bp+UcffaRVq1ZpzZo1GjhwoI4eParNmzfrl19+Ud26dSVJ8+bNM/v87dy5U3v27NHZs2dNSzZNnTpVq1ev1vLly/XGG2/o5s2bWrVqlRYsWKBNmzapbt26GjBggLp3765ixYpZvd+Pw6RJkzRu3Lj8DgPAI5Y0/70ct7lMfoyBAEA+4rwHAAA8jZ6IRLp0dwby66+/rtmzZ8vBwUFRUVHq3r27ChS4O2k+Pj5eb7zxhlmdhg0b6vPPP8+2vfj4eNWoUcMsifjcc89ZFUdERIRGjx6tjIwMLVq0SEOHDrVpX2rUqGH6d+aM6Mxk9L2vnT171pR8PHr0qFkbnTp1UqdOnUzPY2NjVbt2bVMSPTsVKlQwJTalu2NQrlw5UxJdkqpWrSpXV1fFx8erXr16Gjp0qF577TUtXLhQLVq0UHBwsCpXrixJGjx4sPr376+NGzeqRYsW6tKli9m+5SQ+Pj7Lsiz3j/3Bgwd16NAhRUVFmV7LyMhQenq6Tp48KX9/f5vei/j4eN24ccN0IeZ+Bw8e1IkTJ+Ts7Gz2+vXr181mvVtSvXp1UxLdmjZTU1OVnJxsNhb29vaqW7duluVdLImNjVXZsmVNSfT7WTOW1rh165a6du2qjIwMzZkzx/R679691bJlS/n5+alVq1Zq165drhce0tLSFBYWpnXr1ik5OVm3b9/WtWvXTDPSExISZG9vrzp16pjqeHt7myW/Dx48qLS0NJUoUcKs7WvXrpnes127dql79+4qV66ctm7dqkaNGlm1r/lh1KhRZp/fS5cumR2bAJ4OXr2nyMk9+wvPu0e1eMzRWCc2NlZNmjTJ7zAAPEU47wEAAE+jJyaR3r59e2VkZGjdunWqV6+eoqOjNWPGjMceR0hIiEaMGKH9+/fr2rVrOn36tNlSKNbIXBpFkmmmcnav3b8mvCVOTk65lilSpIjV7WUKCwtTjx49tG7dOv3www8aO3asFi9erE6dOum1115TYGCg1q1bp40bN2rSpEmaNm2aBg0aZHM/90tLS1O/fv00ePDgLNvKly8vybb3IrfxSUtL0zPPPGOWbM5078UHS+4f37xoU5IKFCiQJbF+69Yt07+t2bfcxjI3mUn03377TVu3bjXNRpekOnXq6OTJk/rhhx+0efNmde3aVS1atNDy5ctzbG/YsGHatGmTpk6dKm9vbzk5Oemll16y6SataWlp8vDw0LZt27Jsy1x2pn79+vr666+1YMECNW/eXC1atFBoaKg6duyowoULW93X4+Dg4MDNkIF/ALtCjrJzyP7/43u/W58k1izbBgC24LwHAAA8jZ6INdIlydHRUZ07d1ZUVJQWLVokPz8/s9mq/v7+iomJMasTExOjqlWrZtuev7+/Dh06pOvXr5te2717d65xlC1bVk2aNFFUVJSioqLUsmVLlSpV6gH3Ku/UqFFDsbGx2a4NnRN/f3+dPn1ap0+fNr125MgRXbx40WzcfH19NWTIEG3cuFGdO3dWZGSkaVu5cuX05ptvauXKlXr33Xf19ddfW9Xvnj17zF67f+zr1KmjI0eOyNvbO8sjc9a3Le+Fj4+PnJyctGXLlmy316lTR8ePH1epUqWy9Hfvkjq2yK1NFxcXeXh4mG4IK0m3b9/Wvn37zNpxc3Mzu8HbpUuXdPLkSdPzGjVq6Pfff9exY8dyjCO3sbQkM4l+/Phxbd68OcsMcOlu8qdbt276+uuvtWTJEq1YscL0WSxYsKDu3LljVj4mJka9e/dWp06dVL16dbm7u5vdhNXPz0+3b982uwHwiRMn9Ndff5ntV0pKiuzt7bPsV8mSJSVJhQsX1muvvabo6GgdPXpU9erV0wcffCB3d3e9+uqr2rp1q00XrADgQdkbi8utycuyN+b8y7EnlYeHh8aOHSsPD4/8DgXAU87aX0oCAAA8iZ6YRLp0d1mVdevWKSIiwnST0Uzvvfee5s+frzlz5uj48eOaPn26Vq5cmeMNRHv06CGDwaDXX39dR44c0fr16zV16lSr41i8eLGWLVuWJY5HpUqVKmY3oVy1apVp3XLp7uxsd3d3dezYUTExMfr111+1YsUK/fzzzzm22aJFC1WvXl0vv/yy9u/frz179qhXr15q0qSJ6tatq2vXrmngwIHatm2bfvvtN8XExOiXX34xneC+8847+vHHH3Xy5Ent379fP/30k1Unv2+++aaOHz+u9957TwkJCfruu+/MbqQq3V0nfteuXRo4cKBiY2N1/Phx/fvf/85yg0xr3wtHR0eNGDFCw4cP1zfffKPExETt3r1b4eHhpnZKliypoKAgRUdH6+TJk9q2bZsGDx6s33//Pdd9yo41bb799tuaPHmyVq9eraNHj+qtt97SxYsXzdpp3ry5Fi5cqOjoaMXFxemVV14x3UhUkpo0aaLGjRurS5cu2rRpk2l2+IYNG2way+zcunVLL730kvbu3auoqCjduXNHKSkpSklJMc0enz59uhYtWqSjR4/q2LFjWrZsmdzd3U2zwr28vLRlyxalpKSYEuE+Pj6mm94ePHhQPXr0MEtoV6lSRS1atNAbb7yhPXv26MCBA3rjjTfk5ORk+sVGixYt9Nxzz6ljx47auHGjkpKStGvXLn3wwQfau3dvln2pXLmyxo8fr19//VVr1qxRRkaGgoKC9OWXX1r5juZs1KhR6tWrl+n5nj17VKVKFZ05c8b02osvvqhZs2Y9dF8A/p4KOpdQ6aahKuic9WLkk87Dw0NhYWEk0gE8ctYsEwkAAPCkeqIS6c2bN1fx4sWVkJCgHj16mG3r2LGjPv/8c02dOlUBAQH66quvFBkZqaZNm2bbltFo1Pfff6+4uDjVrl1bH3zwgdnNLi156aWXdP78eV29elUdO3Z8yL2yTkJCglJTU03PU1NTlZCQYHpeqFAhbdy4UaVKlVKbNm1UvXp1TZ482Szhej+DwaB///vfKlasmBo3bqwWLVqoUqVKWrJkiSTJzs5O58+fV69eveTr66uuXbuqdevWphsD3blzRwMGDJC/v79atWolX19fzZ49O9d9KV++vFasWKHVq1erZs2amjt3riZOnGhWpkaNGtq+fbuOHTumRo0aqXbt2hozZozKlCljVs6W92L06NF69913NWbMGPn7+6tbt246e/aspLszl3fs2KHy5curc+fO8vf3V9++fXX9+vUH/qm9NW2+++67Cg0N1SuvvKLnnntOzs7OZmvfS3eTtE2aNFG7du3Utm1bdezY0bROfaYVK1aoXr16CgkJUdWqVTV8+HDTLHBrxzI7Z86c0Zo1a/T777+rVq1a8vDwMD127dolSXJ2dtann36qunXrql69ekpKStL69etN9y+YNm2aNm3apHLlyql27dqS7ibfixUrpueff17t27dXYGCg2S9MpLs3vi1durQaN26sTp066fXXX5ezs7PpvgYGg0Hr169X48aN9eqrr8rX11fdu3fXb7/9ZrrPQHYMBoOaNm2q+fPnKyUlJU+O4eTkZNP67pJ09epVJSQkmC3Bk5iYqP/9738P3RcAAAAAAACePIYMW+56CACPyO+//65y5cpp8+bNOd409mly6dIlubi4yH/kihzXUwbwdIkLC8zvEADAKpnnKampqXlyf4e8bg8AACCv2HKe8sTcbBTAP8vWrVuVlpam6tWrKzk5WcOHD5eXl5caN26c36EBAAAAAAAAZp6opV3w9/Dmm2/KaDRm+3jzzTfzO7wHktP+GI1GRUdH53d4Dyw6OtrivuWnW7du6f3331dAQIA6deokNzc3bdu2TQULFszzviyNg52d3RM7RgAAAAAAAHgysLQLbHb27FldunQp221FixZVqVKlHnNED+/EiRM5bvP09JSTk9NjjCbvXLt2zeyGmPfz9vZ+jNHkH0vjcO3aNYvv76MaI5Z2Af55WNoFwN8FS7sAAIB/CpZ2wSNVqlSpv2Wy3JKnNaHs5OT01O6bLRgHAAAAAAAAPAyWdgEAAAAAAAAAwAIS6QAAAAAAAAAAWEAiHQAAAAAAAAAAC0ikAwAAAAAAAABgAYl0AAAAAAAAAAAsIJEOAAAAAAAAAIAFJNIBAAAAAAAAALCARDoAAAAAAAAAABaQSAcAAAAAAAAAwAIS6QAAAAAAAAAAWGCf3wEAwD/Z7lEtVLRo0fwOAwAAAAAAABYwIx0AAAAAAAAAAAtIpAMAAAAAAAAAYAGJdAAAAAAAAAAALCCRDgAAAAAAAACABSTSAQAAAAAAAACwgEQ6AAAAAAAAAAAWkEgHAAAAAAAAAMACEukAAAAAAAAAAFhAIh0AAAAAAAAAAAvs8zsAAPgnazBps+wciuR3GHhM4sIC8zsEAADyzYk3y8pYyJDfYeAx8Z2fmt8hAACQp5iRDgAAAAAAAACABSTSAQAAAAAAAACwgEQ6AAAAAAAAAAAWkEgHAAAAAAAAAMACEukAAAAAAAAAAFhAIh0AAAAAAAAAAAtIpAMAAAAAAAAAYAGJdAAAAAAAAAAALCCRDgAAAAAAAACABSTSAQAAAAAAAACwgEQ6AAAAAAAAAAAWkEgHAAAAAAAAAMACEukAAAAAAAAAAFhAIh0AAAAAAAAAAAtIpAMAAAAAAAAAYAGJdAAAAAAAAAAALHhiEukGg0GrV6/O9nlSUpIMBoNiY2MfWf9hYWGqVauW6Xnv3r3VsWNH0/OmTZvqnXfeeWT9S/k/Bshq/vz5cnV1ze8wAAAAAAAAAOSjx5ZIT0lJ0aBBg1SpUiU5ODioXLlyat++vbZs2SJJSk5OVuvWrU3l73+eFyZNmiQ7OztNmTIl17Kff/655s+fnyf9hoWFyWAwmB4uLi5q1KiRtm/fbrFeXo6Bl5eXWQwGg0Fly5Y1bU9JSVFoaKjc3d1VpEgR1alTRytWrDBr49669vb2Kl++vIYOHaobN26Yypw7d079+/dX+fLl5eDgIHd3dwUGBiomJsbmOO3s7FSmTBn17dtXf/31l6nMtm3bZDAYdPHixWzrf/bZZ3nWV7du3XTs2DGr2ntY91+8yWRpf6tUqSIHBwelpKTY1NfJkyfVo0cPlSlTRo6OjipbtqyCgoJ09OhRq+pv375dzZs3V/HixVW4cGH5+PjolVde0c2bN7OU7devn+zs7LRs2bIs2x702LjXwYMH1aFDB5UqVUqOjo7y8vJSt27ddPbs2Sxls/sOWLFihezs7HTmzJls2/fx8dHQoUOtjge4163L5/XntoW6dfm86bXk5GSFhYUpOTk5HyMDAAB4NM5eTdcXsddN5zqc+wAAnhaPJZGelJSkZ555Rlu3btWUKVMUFxenDRs2qFmzZhowYIAkyd3dXQ4ODqY69z/PCxERERo+fLgiIiJyLevi4pKnM5EDAgKUnJys5ORk/fzzz/Lx8VG7du2UmpqaY528HoPx48ebYkhOTtaBAwdM23r16qWEhAStWbNGcXFx6ty5s7p27WpWRpIiIyOVnJyskydPavbs2Vq4cKE+/vhj0/YuXbrowIEDWrBggY4dO6Y1a9aoadOmOn/+vKyVGeepU6cUFRWlHTt2aPDgwQ8/AA/Ql5OTk0qVKvVI+n5YO3fu1LVr1/TSSy9pwYIFVte7deuWWrZsqdTUVK1cuVIJCQlasmSJqlevnm2y/n5HjhxRq1atVLduXe3YsUNxcXH64osvVKhQId25c8es7NWrV7V48WKLx92DHBuZzp07pxdffFHFixfXjz/+qPj4eEVGRqpMmTK6cuVKlvLZfQd06NBBJUqUyHYMd+zYoRMnTqhv3765xgJk53baBZ3bHqXbaRdMryUnJ2vcuHH8MQkAAJ5K565laNbBm2aJdM59AABPg8eSSH/rrbdkMBi0Z88edenSRb6+vgoICNDQoUO1e/duSZaXNbnfnTt31KdPH1WpUkWnTp2yKobt27fr2rVrGj9+vC5duqRdu3ZZLJ/T7OBM69atk4uLi6Kioqzq397eXu7u7nJ3d1fVqlU1fvx4paWlWZztnNdj4OzsbIrB3d1dbm5upm27du3SoEGDVL9+fVWqVEkffvihXF1dtW/fPrM2XF1d5e7urnLlyqldu3YKCgrS/v37JUkXL15UdHS0PvnkEzVr1kwVKlRQ/fr1NWrUKHXo0MGqGO+N09PTU82aNdMrr7xi6iOv5dbX/Uu7JCYmKigoSKVLl5bRaFS9evW0efNmszZnz54tHx8fOTo6qnTp0nrppZceSezh4eHq0aOHQkNDrbo4lOnw4cNKTEzU7Nmz1aBBA1WoUEENGzbUxx9/rAYNGuRaf+PGjXJ3d9enn36qatWqqXLlymrVqpW+/vprOTk5mZVdtmyZqlatqpEjR2rHjh06ffp0lvYe5NjIFBMTo9TUVM2bN0+1a9dWxYoV1axZM82YMUMVK1Y0K5vTd0DBggUVGhqa7S9QIiIi9OyzzyogICDXWHJz48YNXbp0yeyBf447N6/rzo0runTpktLS0vI7HAAAHinOeyBJaWlpnPsAAJ4qjzyRfuHCBW3YsEEDBgxQkSJFsmy3ddb3jRs3FBwcrNjYWEVHR6t8+fJW1QsPD1dISIgKFiyokJAQhYeH29Tvvb777juFhIQoKipKL7/8ss31b9y4ocjISLm6usrPz++B6j/IGFjy/PPPa8mSJbpw4YLS09O1ePFiXb9+XU2bNs2xzrFjx7R161Y9++yzkiSj0Sij0ajVq1ebLffyMM6cOaPvv//e1MejZE1faWlpatOmjbZs2aIDBw6oVatWat++velixt69ezV48GCNHz9eCQkJ2rBhgxo3bpznsV6+fFnLli1Tz549TbPLo6Ojrarr5uamAgUKaPny5VlmkFvD3d1dycnJ2rFjR65lw8PD1bNnT7m4uKh169a5Lpdk67Hh7u6u27dva9WqVcrIyMg1lpy+A/r27avjx4+b7VNaWpqWL1+eZ7PRJ02aJBcXF9OjXLlyedIu/h6S5r+n+Mld5OLioiZNmuR3OAAAPFKc90CSmjRpwrkPAOCp8sgT6SdOnFBGRoaqVKny0G2lpaWpbdu2OnfunH766SezGdWWXLp0ScuXL1fPnj0lST179tTSpUsf6Mr4l19+qbfeekvff/+92rVrZ3W9uLg4U6LZyclJU6dO1aJFi1S0aFGb+n/QMZCkESNGmGIwGo2aOXOmadvSpUt169YtlShRQg4ODurXr59WrVolb29vszZCQkJkNBrl6OgoPz8/BQQEaNSoUZLuziyeP3++FixYIFdXVzVs2FDvv/++Dh06ZNM+Zsbp5OSksmXLymAwaPr06VnKlS1b1mx/jEaj1bPzbe0rU82aNdWvXz9Vq1ZNPj4++uijj1S5cmWtWbNGknTq1CkVKVJE7dq1U4UKFVS7dm2blqVZu3Ztln3Kbp38xYsXy8fHRwEBAbKzs1P37t2tvjjk6empmTNnasyYMSpWrJiaN2+ujz76SL/++qtV9YODgxUSEqImTZrIw8NDnTp10qxZs7LMNDp+/Lh2796tbt26Sbp73EVGRmZJeD/MsdGgQQO9//776tGjh0qWLKnWrVtrypQp+vPPP83K5fYdULVqVTVo0MBsZv/SpUuVkZGh7t27WzUuuRk1apRSU1NNj+xm5+Pp5dV7ivxHrlBqaqpN9wAAAODviPMeSHd/Ecq5DwDgafLIE+m5zRK1RUhIiK5cuaKNGzfKxcXF6nqLFi1S5cqVVbNmTUlSrVq1VKFCBS1ZssSm/pcvX64hQ4Zo06ZNNl9V9/PzU2xsrGJjY7Vv3z71799fwcHB2rt3r03tPOgYSNJ7771niiE2Nla9evUybRs9erQuXryozZs3a+/evRo6dKi6du2quLg4szZmzJih2NhYHTx4UGvXrtWxY8cUGhpq2t6lSxf98ccfWrNmjVq1aqVt27apTp06Nt24NTPOQ4cOmW5G27Zt2yyzp6Ojo832JzY2VmXKlHmgMcmtr0xpaWkaNmyY/P395erqKqPRqPj4eFMCv2XLlqpQoYIqVaqk0NBQRUVF6erVq1bH06xZsyz7NG/evCzlIiIiTElh6W5ieNmyZbp8+bJV/QwYMEApKSmKiorSc889p2XLlikgIECbNm3Kta6dnZ0iIyP1+++/69NPP5Wnp6cmTpxoWuv83hgDAwNVsmRJSVKbNm2UmpqqrVu3mrX3sMfGhAkTlJKSorlz5yogIEBz585VlSpVzD671nwH9OnTR8uXLzeNYUREhIKDg+Xs7GxVHLlxcHBQ0aJFzR7457Ar5Cg7hyIqWrSojEZjfocDAMAjxXkPpLu/WObcBwDwNHnkiXQfHx8ZDAYdPXr0odtq06aNDh06pJ9//tmmeuHh4Tp8+LDs7e1NjyNHjti0rrQk1a5dW25uboqIiLD5AkGhQoXk7e0tb29v1a5dW5MnT5anp6c+++wzm9p50DGQpJIlS5pi8Pb2Ni2rk5iYqFmzZikiIkIvvviiatasqbFjx6pu3br68ssvzdpwd3eXt7e3/Pz81LZtW40bN05LlizRiRMnTGUcHR3VsmVLjR49Wrt27VLv3r01duxYm+P08fFR8+bN9dlnn2nXrl366aefzMpVrFjRbH+8vb1lb2//QGOSW1+Zhg0bplWrVmnixImmRH716tV18+ZNSXfXXN+/f78WLVokDw8PjRkzRjVr1rTqJp6SVKRIkSz75OnpaVbmyJEj2r17t4YPH276PDdo0MB0Y09rOTs7q3379powYYIOHjyoRo0amd04Njeenp4KDQ3VrFmzdPjwYV2/fl1z586VdHcN/wULFmjdunWmGAsXLqwLFy5kOe7y4tgoUaKEgoODNXXqVMXHx6tMmTKaOnWqabs13wGZM8+XLl2q48ePKyYmhpuM4qHZG4vLrcnLsjcWN73m4eGhsWPHysPDIx8jAwAAeDTcnAwaWLOQ6VyHcx8AwNPCtqzjAyhevLgCAwP15ZdfavDgwVnWSb948aLV66T3799f1apVU4cOHbRu3TqrZoXHxcVp79692rZtm4oX//+JjAsXLqhp06Y6evSo1cvOVK5cWdOmTVPTpk1lZ2enWbNmWVUvJ3Z2drp27ZpNdR5kDHKTOWO6QAHz6yp2dnZKT0+3WNfOzk6SLO5H1apVc7xpqjWs6SOv5NZXTEyMevfurU6dOkm6O0M9KSnJrIy9vb1atGihFi1aaOzYsXJ1ddXWrVvVuXPnPIkxPDxcjRs3znKRIzIyUuHh4Xr99ddtbtNgMKhKlSq53oQ3J8WKFZOHh4euXLkiSVq/fr0uX76sAwcOmMZUkv773//q1VdfzfW4f5BjI1OhQoVUuXJlUyzWfgc4OzsrODhYERERSkxMlK+vrxo1avRAMQCZCjqXUOmmoWaveXh4KCwsLH8CAgAAeMRKFS6gQbUczRLpnPsAAJ4GjzyRLt1dV7xhw4aqX7++xo8frxo1auj27dvatGmT5syZo/j4eKvbGjRokO7cuaN27drphx9+0AsvvGCxfHh4uOrXr5/tDR/r1aun8PBwTZkyxer+fX199dNPP6lp06ayt7e3etbs7du3lZKSIunujSKXLFmiI0eOaMSIEVb3ncnWMchNlSpV5O3trX79+mnq1KkqUaKEVq9erU2bNmnt2rVmZS9evKiUlBSlp6fr+PHjGj9+vHx9feXv76/z588rODhYffr0UY0aNeTs7Ky9e/fq008/VVBQkNXxXL58WSkpKcrIyNDp06c1fPhwubm56fnnn3+o/cyLvnx8fLRy5Uq1b99eBoNBo0ePNrvYsHbtWv36669q3LixihUrpvXr1ys9Pf2BbiqbnVu3bmnhwoUaP368qlWrZrbttdde0/Tp03X48GEFBATk2EZsbKzGjh2r0NBQVa1aVYUKFdL27dsVERFh1efxq6++UmxsrDp16qTKlSvr+vXr+uabb3T48GF98cUXku4ed23btjUtpZKpatWqGjJkiKKiojRgwABJD3dsrF27VosXL1b37t3l6+urjIwMff/991q/fr0iIyNNsVj7HdC3b181atRI8fHxZv2vWrVKo0aNMvtlTZUqVTRp0iTTRZVRo0bpzJkz+uabb3KNGwAAAAAAAH8vjyWRXqlSJe3fv18TJkzQu+++q+TkZLm5uemZZ57RnDlzbG7vnXfeUXp6utq0aaMNGzbkmPS8efOmvv322xwTcl26dNG0adM0ceJEm/r38/PT1q1bTTPTp02blmudw4cPm67IFy5cWJUrV9acOXPM1im3hbVjYI2CBQtq/fr1GjlypNq3b6+0tDR5e3trwYIFatOmjVnZV199VdLdGczu7u5q3LixJk6cKHt7exmNRj377LOaMWOGEhMTdevWLZUrV06vv/663n//favjGTNmjMaMGSNJcnNzU7169bRx40aVKFHigfcxr/qaPn26+vTpo+eff14lS5bUiBEjzG6y6erqqpUrVyosLEzXr1+Xj4+PFi1aZDGxbYs1a9bo/PnzpuTtvfz9/eXv76/w8HCLN0wtW7asvLy8NG7cOCUlJclgMJieDxkyJNcY6tevr507d+rNN9/UH3/8IaPRqICAAK1evVpNmjTRn3/+qXXr1um7777LUrdAgQLq1KmTwsPDTYn0hzk2qlatqsKFC+vdd9/V6dOn5eDgIB8fH82bN0+hoaE2fQcULFhQL7zwgvz8/HTixAmz/lNTU5WQkGBWNyEhQampqabnycnJNt/sFgAAAAAAAH8Phoy8vBtoHrlx44YcHR21adMmtWjRIr/DyReMAfB0u3TpklxcXOQ/coXsHIrkXgFPhbiwwPwOAQCAXGWep6SmpubJjUIz29sX4ixjIUMeRIi/A9/5qbkXAgAgn9ly3vNYZqTb4tKlS1q5cqUKFChg9drlTxvGAAAAAAAAAACeHAVyL/J4jR07ViNGjNAnn3yismXL5lo+KipKRqMx20deLaeRm5z6NxqNio6Otrm9v+MYWONxxvmkjcmpU6csfk7yckmQ6Ohoi33lZuLEiTnWbd26dZ7FaY0n7X0EAAAAAADAP9MTubSLLS5fvqw///wz220FCxZUhQoVHnkMJ06cyHGbp6ennJycHmn/T8IYWONxxvmkjcnt27eVlJSU43YvLy/Z2+fND0SuXbumM2fO5Ljd29vbYv0LFy7owoUL2W5zcnKSp6fnQ8VniyftfcxLLO3yz8TSLgCAvwOWdkFeYGkXAMDfwd96aRdbOTs7y9nZOV9jyC0x+ag9CWNgjccZ55M2Jvb29o/tc+Lk5PRQfRUvXlzFixfPw4ge3JP2PgIAAAAAAOCf6Ylb2gUAAAAAAAAAgCcJiXQAAAAAAAAAACwgkQ4AAAAAAAAAgAUk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFpBIBwAAAAAAAADAAhLpAAAAAAAAAABYQCIdAAAAAAAAAAALSKQDAAAAAAAAAGCBfX4HAAD/ZLtHtVDRokXzOwwAAIBHznvu75z3AACAvy1mpAMAAAAAAAAAYAGJdAAAAAAAAAAALCCRDgAAAAAAAACABSTSAQAAAAAAAACwgEQ6AAAAAAAAAAAWkEgHAAAAAAAAAMACEukAAAAAAAAAAFhAIh0AAAAAAAAAAAtIpAMAAAAAAAAAYAGJdAAAAAAAAAAALLDP7wAAAAAAAE+/E2+WlbGQIb/DAB6I7/zU/A4BAJDPmJEOAAAAAAAAAIAFJNIBAAAAAAAAALCARDoAAAAAAAAAABaQSAcAAAAAAAAAwAIS6QAAAAAAAAAAWEAiHQAAAAAAAAAAC0ikAwAAAAAAAABgAYl0AAAAAAAAAAAsIJEOAAAAAAAAAIAFJNIBAAAAAAAAALCARDoAAAAAAAAAABaQSAcAAAAAAAAAwAIS6QAAAAAAAAAAWEAiHQAAAAAAAAAAC0ikAwAAAAAAAABgwT8ykR4WFqZatWrldxj5qmnTpnrnnXceqo358+fL1dU1T+J50hkMBq1evTq/w8giKSlJBoNBsbGx+R2K1fLiswcAAAAAAAA8To80kb5t2zYZDIYcH82aNZP0/5OBpUqV0uXLl83aqFWrlsLCwkzPe/funaWdVq1a2RTXsGHDtGXLFrM2O3bs+MD7eb+VK1fqX//6l0qUKJFjkjMxMVGdOnWSm5ubihYtqq5du+rPP//MsxiQs6f5Qsr9ifXM55kPZ2dnBQQEaMCAATp+/LhZ3fnz52d7nM6bN0+SlJycrB49esjX11cFChTIMRl+8eJFDRgwQB4eHnJwcJCvr6/Wr19v0340bdrU1L+Dg4M8PT3Vvn17rVy5MkvZe2O1t7dX+fLlNXToUN24ccOsXFRUlGrWrKnChQvLw8NDffr00fnz522KCwAAAAAAAP9MjzSR/vzzzys5OTnL46uvvpLBYNBbb71lVv7y5cuaOnVqru22atXKrL1FixbZFJfRaFSJEiVsqmONmzdvSpKuXLmiF154QZ988km25a5cuaJ//etfMhgM2rp1q2JiYnTz5k21b99e6enpeR4XnjyZn5XHZfPmzUpOTtbBgwc1ceJExcfHq2bNmmYXlCSpaNGiWY7Xl19+WZJ048YNubm56cMPP1TNmjWz7efmzZtq2bKlkpKStHz5ciUkJOjrr7+Wp6enzTG//vrrSk5OVmJiolasWKGqVauqe/fueuONN7KUjYyMVHJysk6ePKnZs2dr4cKF+vjjj03bY2Ji1KtXL/Xt21eHDx/WsmXLtGfPHr3++us2x5XXDh06lN8hAAAAAE+Fs1fT9UXsdZ29+mT+XZ2cnKywsDAlJyfndygAgAfwSBPphQoVkru7u9njr7/+0rBhw/T+++8rODjYrPygQYM0ffp0nT171mK7Dg4OZm0WK1bMbPuIESPk6+urwoULq1KlSho9erRu3bpl2n7vjOSwsDAtWLBA//73v02zWrdt2yZJOn36tLp27SpXV1cVL15cQUFBSkpKMrWTOZN9woQJKlOmjPz8/CRJoaGhGjNmjFq0aJFt/DExMUpKStL8+fNVvXp1Va9eXQsWLNDevXu1detWSXcTkgMHDpSHh4ccHR1VoUIFTZo0ydTGxYsX1a9fP5UuXVqOjo6qVq2a1q5dK0k6f/68QkJC5OnpqcKFC6t69eq5Xmy4ceOGhg0bJk9PTxUpUkTPPvusaRwyzZ8/X+XLl1fhwoXVqVMnm2fzTp48WaVLl5azs7P69u2rkSNHms0Mz27Jj44dO6p3796m5wsXLlTdunXl7Owsd3d39ejRw+zzkvkriC1btqhu3boqXLiwnn/+eSUkJJj2Ydy4cTp48KDp/Z4/f75N+yFJY8eOlYeHhykJunPnTjVq1EhOTk4qV66cBg8erCtXrpjKe3l56aOPPlKvXr1UtGhRvfHGG6alcX788Uf5+/vLaDSaLhLda968efL395ejo6OqVKmi2bNn2xxviRIl5O7urkqVKikoKEibN2/Ws88+q759++rOnTumcgaDIcsx6+TkZNqHzz//XL169ZKLi0u2/UREROjChQtavXq1GjZsKC8vLzVp0iRL4v327dsaOHCgXFxcVLJkSY0ePVoZGRlmZQoXLix3d3eVLVtWDRo00CeffKKvvvpKX3/9tTZv3mxW1tXVVe7u7ipXrpzatWunoKAg7d+/37T9559/lpeXlwYPHqyKFSvqhRdeUL9+/bRnzx6bxzKvxcfH53cIAAAAwFPh3LUMzTp4U+euZeReOB8kJydr3LhxJNIB4G/qsa6RfvHiRQUFBalp06b66KOPsmwPCQmRt7e3xo8fb7Gdbdu2qVSpUvLz81P//v2zJHSdnZ01f/58HTlyRJ9//rm+/vprzZgxI9u2hg0bpq5du5rNcn/++ed169YtBQYGytnZWdHR0YqJiTElOu+dTbxlyxYlJCRo06ZNpkR2bm7cuGFasiKTo6OjChQooJ07d0qSZs6cqTVr1mjp0qVKSEhQVFSUvLy8JEnp6elq3bq1YmJi9O233+rIkSOaPHmy7OzsJEnXr1/XM888o3Xr1um///2v3njjDYWGhlpMGg4cOFA///yzFi9erEOHDik4OFitWrUyLf/xn//8R3379tXAgQMVGxurZs2amc34zc3SpUsVFhamiRMnau/evfLw8HighPCtW7f00Ucf6eDBg1q9erWSkpLMEu2ZPvjgA02bNk179+6Vvb29+vTpI0nq1q2b3n33XQUEBJje727dulndf0ZGhgYNGqRvvvlG0dHRqlGjhhITE9WqVSt16dJFhw4d0pIlS7Rz504NHDjQrO7UqVNVs2ZNHThwQKNHj5YkXb16VVOnTtXChQu1Y8cOnTp1SsOGDTPViYqK0pgxYzRhwgTFx8dr4sSJGj16tBYsWGDz2N2rQIECevvtt/Xbb79p3759D9XWvdasWaPnnntOAwYMUOnSpVWtWjVNnDjRLFkvSQsWLJC9vb327Nmjzz//XNOnTzctIWPJK6+8omLFimW7xEumY8eOaevWrXr22WdNrz333HM6ffq01q9fr4yMDP35559avny52rRp8+A7a6MbN27o0qVLZg8AAICnEec9yG9Xb2Uo7WbePu7/TD/IIy0tLb+HBgDwEOwfV0fp6enq0aOH7O3tFRUVJYPBkKWMwWDQ5MmT1b59ew0ZMkSVK1fOUqZVq1bq3LmzKlasqMTERL3//vtq3bq1fv75Z1Mi+cMPPzSV9/Ly0rBhw7R48WINHz48S3tGo1FOTk66ceOG3N3dTa9/++23Sk9P17x580yxRkZGytXVVdu2bdO//vUvSVKRIkU0b948FSpUyOqxaNCggYoUKaIRI0Zo4sSJysjI0MiRI3Xnzh3TlelTp07Jx8dHL7zwggwGgypUqGCqv3nzZu3Zs0fx8fHy9fWVJFWqVMm03dPT0ywZO2jQIP34449aunSp6tevnyWeU6dOKTIyUqdOnVKZMmUk3b3AsGHDBkVGRmrixIn6/PPP1apVK9MY+vr6ateuXdqwYYNV+/zZZ5+pb9++6tu3ryTp448/1ubNm3X9+nWrx02SKSGeuc8zZ85UvXr1lJaWJqPRaNo2YcIENWnSRJI0cuRItW3bVtevX5eTk5OMRqPs7e3N3m9r3L59Wz179tSBAwe0c+dO03IlkyZN0ssvv2yaTe/j46OZM2eqSZMmmjNnjhwdHSVJzZs317vvvmtqLzo6Wrdu3dLcuXNNn/WBAweaXUgaO3aspk2bps6dO0uSKlasqCNHjuirr77SK6+8YlP896tSpYqku+uoZ34uUlNTzcbRaDQqJSXF6jZ//fVXbd26VS+//LLWr1+vEydO6K233tKtW7c0duxYU7ly5cppxowZMhgM8vPzU1xcnGbMmJHrUisFChSQr6+v2S9DpLsX4ezs7HT79m3duHFD7dq106hRo0zbGzZsqKioKHXr1k3Xr1/X7du31b59e3355ZdW79vDmjRpksaNG/fY+gMAAMgvnPcgv/X88WreN7oo+1/lAgD+OR5bIv3999/Xzz//rD179sjZ2TnHcoGBgXrhhRc0evRofffdd1m2d+/e3fTv6tWrq0aNGqpcubK2bdumF198UZK0ZMkSzZw5U4mJiUpLS9Pt27dVtGhRm+I9ePCgTpw4kSXW69evKzEx0SwGW5LokuTm5qZly5apf//+mjlzpgoUKKCQkBDVqVNHBQrc/ZFA79691bJlS/n5+alVq1Zq166dKXkfGxursmXLmpLo97tz544mTpyopUuX6syZM7p586Zu3LihwoULZ1s+Li5Od+7cydLejRs3TGvJx8fHq1OnTmbbn3vuOasT6fHx8XrzzTez1P/pp5+sqp9p3759CgsL08GDB/XXX3+Z1pQ/deqUqlataipXo0YN0789PDwkSWfPnlX58uVt6u9eQ4YMkYODg3bv3q2SJUuaXj948KAOHTqkqKgo02sZGRlKT0/XyZMn5e/vL0mqW7duljYLFy5sdsHIw8PDtFTNlStXlJiYqL59+5olmG/fvp3j0iq2yFxK5d6LWs7OzmZLomR+Hq2Vnp6uUqVK6f/+7/9kZ2enZ555RmfOnNGUKVPMEukNGjQw6/e5557TtGnTdOfOHdMFMUtx338hbsaMGWrRooXu3LmjEydOaOjQoQoNDdXixYslSUeOHNHbb7+tMWPGKDAwUMnJyXrvvff05ptvKjw83KZ9fFCjRo3S0KFDTc8vXbqkcuXKPZa+AQAAHifOe5Dfvg0sLP/ilv+usJX33N8fuo3Y2FjThC8AwN/PY0mkL168WFOnTtW6devk4+OTa/nJkyfrueee03vvvZdr2UqVKqlkyZI6ceKEXnzxRf388896+eWXNW7cOAUGBsrFxUWLFy/WtGnTbIo5LS1NzzzzjFlyNJObm5vp30WKFLGp3Uz/+te/lJiYqP/973+yt7c3rfGcObO8Tp06OnnypH744Qdt3rxZXbt2VYsWLbR8+XLTmtU5mTJlij7//HN99tlnql69uooUKaJ33nknxxtcpqWlyc7OTvv27cuSxLx3dvKjVqBAgSzrZN+7tv2VK1cUGBiowMBARUVFyc3NTadOnVJgYGCWfStYsKDp35lJ14e9kWvLli21aNEi/fjjj6YbcEp3x69fv34aPHhwljr3Ju6z+6zcG2dmrJljkPmzv6+//tpsmRJJuSabrZG5NnfFihVNrxUoUEDe3t4P3KaHh4cKFixoFp+/v79SUlJ08+ZNmy863e/OnTs6fvy46tWrZ/a6u7u7KW4/Pz9dvnxZISEh+vjjj+Xt7a1JkyapYcOGpu+UGjVqqEiRImrUqJE+/vhj08WWR8nBwcFsOScAAICnFec9yG+FCxpkLJT1V/APw9bJedl5nH9fAwDy3iNPpMfGxqpv376aPHmyAgMDrapTv359de7cWSNHjsy17O+//67z58+bEmG7du1ShQoV9MEHH5jK/PbbbxbbKFSoUJY1nOvUqaMlS5aoVKlSefIfZk4yZzZv3bpVZ8+eVYcOHUzbihYtqm7duqlbt2566aWX1KpVK124cEE1atTQ77//rmPHjmU7Kz0mJkZBQUHq2bOnpLsJ5GPHjpnN2L5X7dq1defOHZ09e1aNGjXKtoy/v7/+85//mL22e/duq/czs36vXr1yrO/m5mZ205U7d+7ov//9r5o1ayZJOnr0qM6fP6/JkyebZrTs3bvX6hgyZfd+W6NDhw5q3769evToITs7O9OvI+rUqaMjR448VAI6O6VLl1aZMmX066+/miXu80J6erpmzpypihUrqnbt2nnWbsOGDfXdd98pPT3dNJv92LFj8vDwMEuiZ/dZ8vHxyfUCwYIFC/TXX3+pS5cuFstltnPt2jVJd9eit7e3z7bM/RdvHrfMXywAAAAAeDhuTgYNrFlIbk55m0TPKx4eHho7duxjmcgDAMh7j/Rmo//73//UsWNHNW3aVD179lRKSorZ49y5cznWnTBhgrZu3aqEhATTa2lpaXrvvfe0e/duJSUlacuWLQoKCpK3t7cpSe/j46NTp05p8eLFSkxM1MyZM7Vq1SqLcXp5eenQoUNKSEjQ//73P926dUsvv/yySpYsqaCgIEVHR+vkyZPatm2bBg8erN9/t/yTrgsXLig2NlZHjhyRJCUkJCg2NtZsrenIyEjt3r1biYmJ+vbbbxUcHKwhQ4bIz89PkjR9+nQtWrRIR48e1bFjx7Rs2TK5u7vL1dVVTZo0UePGjdWlSxdt2rTJNHM9c5kVHx8fbdq0Sbt27VJ8fLz69eunP//8M8d4fX199fLLL6tXr15auXKlTp48qT179mjSpElat26dJGnw4MHasGGDpk6dquPHj2vWrFlWL+siSW+//bYiIiIUGRmpY8eOaezYsTp8+LBZmebNm2vdunVat26djh49qv79++vixYum7eXLl1ehQoX0xRdf6Ndff9WaNWuyvWltbry8vHTy5EnFxsbqf//7n27cuGF13U6dOmnhwoV69dVXtXz5cknSiBEjtGvXLtONWI8fP65///vfWW42+iDGjRunSZMmaebMmTp27Jji4uIUGRmp6dOn29TO+fPnlZKSYhq3Fi1aaM+ePQoPD7dpdntsbKxiY2OVlpamc+fOmX3OJal///66cOGC3n77bR07dkzr1q3TxIkTNWDAALN2Tp06paFDhyohIUGLFi3SF198obffftuszNWrV5WSkqLff/9du3fv1ogRI/Tmm2+qf//+posrmS5evKiUlBT98ccf2r59u8aPHy9fX19Tkrp9+/ZauXKl5syZo19//VUxMTEaPHiw6tevb7ovgCWrVq0yrSmfqUqVKmbfLaNGjTK7UGSte5chAgAAAPDgShUuoEG1HFWq8CNNdTwwDw8PhYWFkUgHgL+pR/q/y7p16/Tbb79p/fr18vDwyPK4f3mGe/n6+qpPnz5mN6O0s7PToUOH1KFDB/n6+qpv37565plnFB0dbfrpYIcOHTRkyBANHDhQtWrV0q5duzR69GiLcb7++uvy8/NT3bp15ebmppiYGBUuXFg7duxQ+fLl1blzZ/n7+6tv3766fv16rjPU16xZo9q1a6tt27aS7q7rXrt2bc2dO9dUJiEhQR07dpS/v7/Gjx+vDz74QFOnTjVtd3Z21qeffqq6deuqXr16SkpK0vr1602zfFesWKF69eopJCREVatW1fDhw02zrD/88EPVqVNHgYGBatq0qdzd3dWxY0eLMUdGRqpXr15699135efnp44dO+qXX34xLU3SoEEDff311/r8889Vs2ZNbdy40eymrrnp1q2bRo8ereHDh+uZZ57Rb7/9pv79+5uV6dOnj1555RX16tVLTZo0UaVKlcwSpm5ubpo/f76WLVumqlWravLkyWZjZq0uXbqoVatWatasmdzc3LRo0SKb6r/00ktasGCBQkNDtXLlStWoUUPbt2/XsWPH1KhRI9WuXVtjxoyxKkGbm9dee03z5s1TZGSkqlevriZNmmj+/Plmy7FYo0WLFvLw8FD16tU1cuRI+fv769ChQ1kS0rmpXbu2ateurX379um7775T7dq11aZNG9P2cuXK6ccff9Qvv/yiGjVqaPDgwXr77bez/LqkV69eunbtmurXr68BAwbo7bff1htvvGFW5uuvv5aHh4cqV66szp0768iRI1qyZIlmz56dJa5XX31VHh4eKlu2rEJCQhQQEKAffvjBNAu9d+/emj59umbNmqVq1aopODhYfn5+WrlypVX7nZqaanZRT7p7DKemppqeJycn69SpU1a1BwAAAAAAgL8XQ0Z+r2uAf6ywsDCtXr1asbGx+R0K8NhdunRJLi4uSk1NfaTLRwEAANgqr89TMtvbF+Kc5+tWA4+L7/zU3AsBAP52bDnveTJ/7wQAAAAAAAAAwBPioRPpp06dktFozPHBUgf/DAEBATl+BqKiovI7PIuioqJyjD0gICC/w8NjYOk7LDo6Or/DAwAAAAAAQD576KVdbt++raSkpBy3e3l5mdYpxtPrt99+061bt7LdVrp0aTk7Oz/miKx3+fLlHG/GWrBgQVWoUOExR4TH7cSJEzlu8/T0lJOTU573ydIuAADgScXSLkBWLO0CAE8nW857HjrDbW9vL29v74dtBn9zf+dks7Oz8xOd6Mejx3cYAAAAAAAALGGNdAAAAAAAAAAALCCRDgAAAAAAAACABSTSAQAAAAAAAACwgEQ6AAAAAAAAAAAWkEgHAAAAAAAAAMACEukAAAAAAAAAAFhAIh0AAAAAAAAAAAtIpAMAAAAAAAAAYAGJdAAAAAAAAAAALCCRDgAAAAAAAACABfb5HQAAAAAA4OnnPfd3FS1aNL/DAAAAeCDMSAcAAAAAAAAAwAIS6QAAAAAAAAAAWEAiHQAAAAAAAAAAC0ikAwAAAAAAAABgAYl0AAAAAAAAAAAsIJEOAAAAAAAAAIAFJNIBAAAAAAAAALCARDoAAAAAAAAAABaQSAcAAAAAAAAAwAL7/A4AAP7JGkzaLDuHIvkdxlMjLiwwv0MAAAA5OPFmWRkLGfI7jL893/mp+R0CAAD/SMxIBwAAAAAAAADAAhLpAAAAAAAAAABYQCIdAAAAAAAAAAALSKQDAAAAAAAAAGABiXQAAAAAAAAAACwgkQ4AAAAAAAAAgAUk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFpBIBwAAAAAAAADAAhLpAAAAAAAAAABYQCIdAAAAAAAAAAALSKQDAAAAAAAAAGABiXQAAAAAAAAAACwgkQ4AAAAAAAAAgAUk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFjwxiXSDwaDVq1dn+zwpKUkGg0GxsbGPrP+wsDDVqlXL9Lx3797q2LGj6XnTpk31zjvvPLL+pfwfA2Q1f/58ubq65ncYAAAAAAAAAPLRY0ukp6SkaNCgQapUqZIcHBxUrlw5tW/fXlu2bJEkJScnq3Xr1qby9z/PC5MmTZKdnZ2mTJmSa9nPP/9c8+fPz5N+w8LCZDAYTA8XFxc1atRI27dvt1gvL8fAy8vLLAaDwaCyZcuatqekpCg0NFTu7u4qUqSI6tSpoxUrVpi1cW9de3t7lS9fXkOHDtWNGzdMZc6dO6f+/furfPnycnBwkLu7uwIDAxUTE2NznHZ2dipTpoz69u2rv/76y1Rm27ZtMhgMunjxYrb1P/vsszzrq1u3bjp27JhV7T2s+y/eZLK0v1WqVJGDg4NSUlJs6uvkyZPq0aOHypQpI0dHR5UtW1ZBQUE6evSoVfW3b9+u5s2bq3jx4ipcuLB8fHz0yiuv6ObNm1nK9uvXT3Z2dlq2bFmWbQ96bNzr4MGD6tChg0qVKiVHR0d5eXmpW7duOnv2bJay2X0HrFixQnZ2djpz5ky27fv4+Gjo0KFWx4PH79bl8/pz20Ldunxe0t3vzrCwMCUnJ+dzZAAAAA/v7NV0fRF7XWevppu9zjkPAACP12NJpCclJemZZ57R1q1bNWXKFMXFxWnDhg1q1qyZBgwYIElyd3eXg4ODqc79z/NCRESEhg8froiIiFzLuri45OlM5ICAACUnJys5OVk///yzfHx81K5dO6WmpuZYJ6/HYPz48aYYkpOTdeDAAdO2Xr16KSEhQWvWrFFcXJw6d+6srl27mpWRpMjISCUnJ+vkyZOaPXu2Fi5cqI8//ti0vUuXLjpw4IAWLFigY8eOac2aNWratKnOnz9vc5ynTp1SVFSUduzYocGDBz/8ADxAX05OTipVqtQj6fth7dy5U9euXdNLL72kBQsWWF3v1q1batmypVJTU7Vy5UolJCRoyZIlql69erbJ+vsdOXJErVq1Ut26dbVjxw7FxcXpiy++UKFChXTnzh2zslevXtXixYstHncPcmxkOnfunF588UUVL15cP/74o+Lj4xUZGakyZcroypUrWcpn9x3QoUMHlShRItsx3LFjh06cOKG+ffvmGgvyz+20Czq3PUq30y5IuvtH5bhx4/ijEgAAPBXOXcvQrIM3de5ahtnrnPMAAPB4PZZE+ltvvSWDwaA9e/aoS5cu8vX1VUBAgIYOHardu3dLsrysyf3u3LmjPn36qEqVKjp16pRVMWzfvl3Xrl3T+PHjdenSJe3atcti+ZxmB2dat26dXFxcFBUVZVX/9vb2cnd3l7u7u6pWrarx48crLS3N4mznvB4DZ2dnUwzu7u5yc3Mzbdu1a5cGDRqk+vXrq1KlSvrwww/l6uqqffv2mbXh6uoqd3d3lStXTu3atVNQUJD2798vSbp48aKio6P1ySefqFmzZqpQoYLq16+vUaNGqUOHDlbFeG+cnp6eatasmV555RVTH3ktt77uX9olMTFRQUFBKl26tIxGo+rVq6fNmzebtTl79mz5+PjI0dFRpUuX1ksvvfRIYg8PD1ePHj0UGhpq1cWhTIcPH1ZiYqJmz56tBg0aqEKFCmrYsKE+/vhjNWjQINf6GzdulLu7uz799FNVq1ZNlStXVqtWrfT111/LycnJrOyyZctUtWpVjRw5Ujt27NDp06eztPcgx0ammJgYpaamat68eapdu7YqVqyoZs2aacaMGapYsaJZ2Zy+AwoWLKjQ0NBsf4ESERGhZ599VgEBAbnGkpsbN27o0qVLZg/krTs3r+vSpUtKS0vL71AAAPhH47zn0bh6K0NpNzNMY8o5DwAAj9cjT6RfuHBBGzZs0IABA1SkSJEs222d9X3jxg0FBwcrNjZW0dHRKl++vFX1wsPDFRISooIFCyokJETh4eE29Xuv7777TiEhIYqKitLLL79sc/0bN24oMjJSrq6u8vPze6D6DzIGljz//PNasmSJLly4oPT0dC1evFjXr19X06ZNc6xz7Ngxbd26Vc8++6wkyWg0ymg0avXq1WbLvTyMM2fO6Pvvvzf18ShZ01daWpratGmjLVu26MCBA2rVqpXat29vupixd+9eDR48WOPHj1dCQoI2bNigxo0b53msly9f1rJly9SzZ0/T7PLo6Gir6rq5ualAgQJavnx5lhnk1nB3d1dycrJ27NiRa9nw8HD17NlTLi4uat26da7LJdl6bLi7u+v27dtatWqVMjIyLJa19B3Qt29fHT9+3Gyf0tLStHz58jybjT5p0iS5uLiYHuXKlcuTdvH/Jc1/Ty4uLmrSpEl+hwIAwD8a5z2PRs8fr+qZRZdN48o5DwAAj9cjT6SfOHFCGRkZqlKlykO3lZaWprZt2+rcuXP66aefzGZUW3Lp0iUtX75cPXv2lCT17NlTS5cufaAr+F9++aXeeustff/992rXrp3V9eLi4kyJZicnJ02dOlWLFi1S0aJFber/QcdAkkaMGGGKwWg0aubMmaZtS5cu1a1bt1SiRAk5ODioX79+WrVqlby9vc3aCAkJkdFolKOjo/z8/BQQEKBRo0ZJujuzeP78+VqwYIFcXV3VsGFDvf/++zp06JBN+5gZp5OTk8qWLSuDwaDp06dnKVe2bFmz/TEajVbPzre1r0w1a9ZUv379VK1aNfn4+Oijjz5S5cqVtWbNGknSqVOnVKRIEbVr104VKlRQ7dq1bVqWZu3atVn2Kbt18hcvXiwfHx8FBATIzs5O3bt3t/rikKenp2bOnKkxY8aoWLFiat68uT766CP9+uuvVtUPDg5WSEiImjRpIg8PD3Xq1EmzZs3KMtPo+PHj2r17t7p16ybp7nEXGRmZJeH9MMdGgwYN9P7776tHjx4qWbKkWrdurSlTpujPP/80K5fbd0DVqlXVoEEDs5n9S5cuVUZGhrp3727VuORm1KhRSk1NNT2ym52Ph+PVe4pSU1NtWmMfAADkPc57Ho1vAwtrX4izaVw55wEA4PF65In03GaJ2iIkJERXrlzRxo0b5eLiYnW9RYsWqXLlyqpZs6YkqVatWqpQoYKWLFliU//Lly/XkCFDtGnTJpuv/vv5+Sk2NlaxsbHat2+f+vfvr+DgYO3du9emdh50DCTpvffeM8UQGxurXr16mbaNHj1aFy9e1ObNm7V3714NHTpUXbt2VVxcnFkbM2bMUGxsrA4ePKi1a9fq2LFjCg0NNW3v0qWL/vjjD61Zs0atWrXStm3bVKdOHZtu3JoZ56FDh0w3o23btm2W2dPR0dFm+xMbG6syZco80Jjk1lemtLQ0DRs2TP7+/nJ1dZXRaFR8fLwpgd+yZUtVqFBBlSpVUmhoqKKionT16lWr42nWrFmWfZo3b16WchEREaaksHQ3Mbxs2TJdvnzZqn4GDBiglJQURUVF6bnnntOyZcsUEBCgTZs25VrXzs5OkZGR+v333/Xpp5/K09NTEydONK11fm+MgYGBKlmypCSpTZs2Sk1N1datW83ae9hjY8KECUpJSdHcuXMVEBCguXPnqkqVKmafXWu+A/r06aPly5ebxjAiIkLBwcFydna2Ko7cODg4qGjRomYP5C27Qo4qWrSojEZjfocCAMA/Guc9j0bhggYZCxlMY8o5DwAAj9cjT6T7+PjIYDDo6NGjD91WmzZtdOjQIf3888821QsPD9fhw4dlb29vehw5csSmdaUlqXbt2nJzc1NERITNFwgKFSokb29veXt7q3bt2po8ebI8PT312Wef2dTOg46BJJUsWdIUg7e3t2lZncTERM2aNUsRERF68cUXVbNmTY0dO1Z169bVl19+adaGu7u7vL295efnp7Zt22rcuHFasmSJTpw4YSrj6Oioli1bavTo0dq1a5d69+6tsWPH2hynj4+Pmjdvrs8++0y7du3STz/9ZFauYsWKZvvj7e0te3v7BxqT3PrKNGzYMK1atUoTJ040JfKrV6+umzdvSrq75vr+/fu1aNEieXh4aMyYMapZs6ZVN/GUpCJFimTZJ09PT7MyR44c0e7duzV8+HDT57lBgwamG3tay9nZWe3bt9eECRN08OBBNWrUyOzGsbnx9PRUaGioZs2apcOHD+v69euaO3eupLtr+C9YsEDr1q0zxVi4cGFduHAhy3GXF8dGiRIlFBwcrKlTpyo+Pl5lypTR1KlTTdut+Q7InHm+dOlSHT9+XDExMdxk9G/C3lhcbk1elr2xuCTJw8NDY8eOlYeHRz5HBgAA8PDcnAwaWLOQ3JwMZq9zzgMAwONlW9bxARQvXlyBgYH68ssvNXjw4CzrpF+8eNHqddL79++vatWqqUOHDlq3bp1Vs8Lj4uK0d+9ebdu2TcWLFze9fuHCBTVt2lRHjx61etmZypUra9q0aWratKns7Ow0a9Ysq+rlxM7OTteuXbOpzoOMQW4yZ0wXKGB+XcXOzk7p6ekW69rZ2UmSxf2oWrVqjjdNtYY1feSV3PqKiYlR79691alTJ0l3Z6gnJSWZlbG3t1eLFi3UokULjR07Vq6urtq6das6d+6cJzGGh4ercePGWS5yREZGKjw8XK+//rrNbRoMBlWpUiXXm/DmpFixYvLw8NCVK1ckSevXr9fly5d14MAB05hK0n//+1+9+uqruR73D3JsZCpUqJAqV65sisXa7wBnZ2cFBwcrIiJCiYmJ8vX1VaNGjR4oBjxeBZ1LqHTT///LGA8PD4WFheVfQAAAAHmoVOECGlTLMcvrnPMAAPB4PfJEunR3XfGGDRuqfv36Gj9+vGrUqKHbt29r06ZNmjNnjuLj461ua9CgQbpz547atWunH374QS+88ILF8uHh4apfv362N3ysV6+ewsPDNWXKFKv79/X11U8//aSmTZvK3t7e6lmzt2/fVkpKiqS7N4pcsmSJjhw5ohEjRljddyZbxyA3VapUkbe3t/r166epU6eqRIkSWr16tTZt2qS1a9ealb148aJSUlKUnp6u48ePa/z48fL19ZW/v7/Onz+v4OBg9enTRzVq1JCzs7P27t2rTz/9VEFBQVbHc/nyZaWkpCgjI0OnT5/W8OHD5ebmpueff/6h9jMv+vLx8dHKlSvVvn17GQwGjR492uxiw9q1a/Xrr7+qcePGKlasmNavX6/09PQHuqlsdm7duqWFCxdq/Pjxqlatmtm21157TdOnT9fhw4cVEBCQYxuxsbEaO3asQkNDVbVqVRUqVEjbt29XRESEVZ/Hr776SrGxserUqZMqV66s69ev65tvvtHhw4f1xRdfSLp73LVt29a0lEqmqlWrasiQIYqKitKAAQMkPdyxsXbtWi1evFjdu3eXr6+vMjIy9P3332v9+vWKjIw0xWLtd0Dfvn3VqFEjxcfHm/W/atUqjRo1yuyXNVWqVNGkSZNMF1VGjRqlM2fO6Jtvvsk1bgAAAAAAAPy9PJZEeqVKlbR//35NmDBB7777rpKTk+Xm5qZnnnlGc+bMsbm9d955R+np6WrTpo02bNiQY9Lz5s2b+vbbb3NMyHXp0kXTpk3TxIkTberfz89PW7duNc1MnzZtWq51Dh8+bPrJXeHChVW5cmXNmTPHbJ1yW1g7BtYoWLCg1q9fr5EjR6p9+/ZKS0uTt7e3FixYoDZt2piVffXVVyXdncHs7u6uxo0ba+LEibK3t5fRaNSzzz6rGTNmKDExUbdu3VK5cuX0+uuv6/3337c6njFjxmjMmDGSJDc3N9WrV08bN25UiRIlHngf86qv6dOnq0+fPnr++edVsmRJjRgxwuwmm66urlq5cqXCwsJ0/fp1+fj4aNGiRRYT27ZYs2aNzp8/b0re3svf31/+/v4KDw+3eMPUsmXLysvLS+PGjVNSUpIMBoPp+ZAhQ3KNoX79+tq5c6fefPNN/fHHHzIajQoICNDq1avVpEkT/fnnn1q3bp2+++67LHULFCigTp06KTw83JRIf5hjo2rVqipcuLDeffddnT59Wg4ODvLx8dG8efMUGhpq03dAwYIF9cILL8jPz08nTpww6z81NVUJCQlmdRMSEpSammp6npycbPPNbgEAAAAAAPD3YMjIy7uB5pEbN27I0dFRmzZtUosWLfI7nHzBGABPt0uXLsnFxUX+I1fIzqFI7hVglbiwwPwOAQCAv73M85TU1NQ8uVFoZnv7QpxlLGTIvQIs8p2fmnshAABgFVvOex7LjHRbXLp0SStXrlSBAgWsXrv8acMYAAAAAAAAAMCTo0DuRR6vsWPHasSIEfrkk09UtmzZXMtHRUXJaDRm+8ir5TRyk1P/RqNR0dHRNrf3dxwDazzOOJ+0MTl16pTFz0leLgkSHR1tsa/cTJw4Mce6rVu3zrM4rfGkvY8AAAAAAAD4Z3oil3axxeXLl/Xnn39mu61gwYKqUKHCI4/hxIkTOW7z9PSUk5PTI+3/SRgDazzOOJ+0Mbl9+7aSkpJy3O7l5SV7+7z5gci1a9d05syZHLd7e3tbrH/hwgVduHAh221OTk7y9PR8qPhs8aS9j3mJpV0eDZZ2AQDg4bG0y5ONpV0AAMg7f+ulXWzl7OwsZ2fnfI0ht8Tko/YkjIE1HmecT9qY2NvbP7bPiZOT00P1Vbx4cRUvXjwPI3pwT9r7CAAAAAAAgH+mJ25pFwAAAAAAAAAAniQk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFpBIBwAAAAAAAADAAhLpAAAAAAAAAABYQCIdAAAAAAAAAAALSKQDAAAAAAAAAGABiXQAAAAAAAAAACwgkQ4AAAAAAAAAgAX2+R0AAPyT7R7VQkWLFs3vMAAAAB4577m/c94DAAD+tpiRDgAAAAAAAACABSTSAQAAAAAAAACwgEQ6AAAAAAAAAAAWkEgHAAAAAAAAAMACEukAAAAAAAAAAFhAIh0AAAAAAAAAAAtIpAMAAAAAAAAAYAGJdAAAAAAAAAAALCCRDgAAAAAAAACABSTSAQAAAAAAAACwwD6/AwCAf7IGkzbLzqFIfofxxIsLC8zvEAAAwEM68WZZGQsZ8juMJ5bv/NT8DgEAAFjAjHQAAAAAAAAAACwgkQ4AAAAAAAAAgAUk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFpBIBwAAAAAAAADAAhLpAAAAAAAAAABYQCIdAAAAAAAAAAALSKQDAAAAAAAAAGABiXQAAAAAAAAAACwgkQ4AAAAAAAAAgAUk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFpBIBwAAAAAAAADAAhLpAAAAAAAAAABYQCIdAAAAAAAAAAALnphEusFg0OrVq7N9npSUJIPBoNjY2EfWf1hYmGrVqmV63rt3b3Xs2NH0vGnTpnrnnXceWf9S/o8Bspo/f75cXV3zOwwAAAAAAAAA+eixJdJTUlI0aNAgVapUSQ4ODipXrpzat2+vLVu2SJKSk5PVunVrU/n7n+eFSZMmyc7OTlOmTMm17Oeff6758+fnSb9hYWEyGAymh4uLixo1aqTt27dbrJeXY+Dl5WUWg8FgUNmyZU3bU1JSFBoaKnd3dxUpUkR16tTRihUrzNq4t669vb3Kly+voUOH6saNG6Yy586dU//+/VW+fHk5ODjI3d1dgYGBiomJsTlOOzs7lSlTRn379tVff/1lKrNt2zYZDAZdvHgx2/qfffZZnvXVrVs3HTt2zKr2Htb9F28yWdrfKlWqyMHBQSkpKTb1dfLkSfXo0UNlypSRo6OjypYtq6CgIB09etSq+tu3b1fz5s1VvHhxFS5cWD4+PnrllVd08+bNLGX79esnOzs7LVu2LMu2Bz027nXw4EF16NBBpUqVkqOjo7y8vNStWzedPXs2S9nsvgNWrFghOzs7nTlzJtv2fXx8NHToUKvjAQAAAAAAwNPnsSTSk5KS9Mwzz2jr1q2aMmWK4uLitGHDBjVr1kwDBgyQJLm7u8vBwcFU5/7neSEiIkLDhw9XRERErmVdXFzydCZyQECAkpOTlZycrJ9//lk+Pj5q166dUlNTc6yT12Mwfvx4UwzJyck6cOCAaVuvXr2UkJCgNWvWKC4uTp07d1bXrl3NykhSZGSkkpOTdfLkSc2ePVsLFy7Uxx9/bNrepUsXHThwQAsWLNCxY8e0Zs0aNW3aVOfPn7c5zlOnTikqKko7duzQ4MGDH34AHqAvJycnlSpV6pH0/bB27typa9eu6aWXXtKCBQusrnfr1i21bNlSqampWrlypRISErRkyRJVr14922T9/Y4cOaJWrVqpbt262rFjh+Li4vTFF1+oUKFCunPnjlnZq1evavHixRaPuwc5NjKdO3dOL774oooXL64ff/xR8fHxioyMVJkyZXTlypUs5bP7DujQoYNKlCiR7Rju2LFDJ06cUN++fXONBXnv1uXz+nPbQl1LPqGwsDAlJyfnd0gAAAB55uzVdH0Re11nr6abXktOTua8BwCAJ9RjSaS/9dZbMhgM2rNnj7p06SJfX18FBARo6NCh2r17tyTLy5rc786dO+rTp4+qVKmiU6dOWRXD9u3bde3aNY0fP16XLl3Srl27LJbPaXZwpnXr1snFxUVRUVFW9W9vby93d3e5u7uratWqGj9+vNLS0izOds7rMXB2djbF4O7uLjc3N9O2Xbt2adCgQapfv74qVaqkDz/8UK6urtq3b59ZG66urnJ3d1e5cuXUrl07BQUFaf/+/ZKkixcvKjo6Wp988omaNWumChUqqH79+ho1apQ6dOhgVYz3xunp6almzZrplVdeMfWR13Lr6/6lXRITExUUFKTSpUvLaDSqXr162rx5s1mbs2fPlo+PjxwdHVW6dGm99NJLjyT28PBw9ejRQ6GhoVZdHMp0+PBhJSYmavbs2WrQoIEqVKighg0b6uOPP1aDBg1yrb9x40a5u7vr008/VbVq1VS5cmW1atVKX3/9tZycnMzKLlu2TFWrVtXIkSO1Y8cOnT59Okt7D3JsZIqJiVFqaqrmzZun2rVrq2LFimrWrJlmzJihihUrmpXN6TugYMGCCg0NzfYXKBEREXr22WcVEBCQayzIe7fTLujc9ijd+N8pjRs3jj8oAQDAU+XctQzNOnhT565lmF5LTk7mvAcAgCfUI0+kX7hwQRs2bNCAAQNUpEiRLNttnfV948YNBQcHKzY2VtHR0SpfvrxV9cLDwxUSEqKCBQsqJCRE4eHhNvV7r++++04hISGKiorSyy+/bHP9GzduKDIyUq6urvLz83ug+g8yBpY8//zzWrJkiS5cuKD09HQtXrxY169fV9OmTXOsc+zYMW3dulXPPvusJMloNMpoNGr16tVmy708jDNnzuj777839fEoWdNXWlqa2rRpoy1btujAgQNq1aqV2rdvb7qYsXfvXg0ePFjjx49XQkKCNmzYoMaNG+d5rJcvX9ayZcvUs2dP0+zy6Ohoq+q6ubmpQIECWr58eZYZ5NZwd3dXcnKyduzYkWvZ8PBw9ezZUy4uLmrdunWuyyXZemy4u7vr9u3bWrVqlTIyMiyWtfQd0LdvXx0/ftxsn9LS0rR8+fI8m41+48YNXbp0yewB69y5lTffJwAA4PHgvMc2V29lKO1mhi5duqS0tLT8DgcAAOTgkSfST5w4oYyMDFWpUuWh20pLS1Pbtm117tw5/fTTT2Yzqi25dOmSli9frp49e0qSevbsqaVLlz7QScqXX36pt956S99//73atWtndb24uDhTotnJyUlTp07VokWLVLRoUZv6f9AxkKQRI0aYYjAajZo5c6Zp29KlS3Xr1i2VKFFCDg4O6tevn1atWiVvb2+zNkJCQmQ0GuXo6Cg/Pz8FBARo1KhRku7OLJ4/f74WLFggV1dXNWzYUO+//74OHTpk0z5mxunk5KSyZcvKYDBo+vTpWcqVLVvWbH+MRqPVs/Nt7StTzZo11a9fP1WrVk0+Pj766KOPVLlyZa1Zs0aSdOrUKRUpUkTt2rVThQoVVLt2bZuWpVm7dm2WfcpunfzFixfLx8dHAQEBsrOzU/fu3a2+OOTp6amZM2dqzJgxKlasmJo3b66PPvpIv/76q1X1g4ODFRISoiZNmsjDw0OdOnXSrFmzsvyBdPz4ce3evVvdunWTdPe4i4yMzJLwfphjo0GDBnr//ffVo0cPlSxZUq1bt9aUKVP0559/mpXL7TugatWqatCggdnM/qVLlyojI0Pdu3e3alxyM2nSJLm4uJge5cqVy5N2/wmSv/88v0MAAAA24LzHNj1/vKpnFl2Wi4uLmjRpkt/hAACAHDzyRHpus0RtERISoitXrmjjxo1ycXGxut6iRYtUuXJl1axZU5JUq1YtVahQQUuWLLGp/+XLl2vIkCHatGmTzSc4fn5+io2NVWxsrPbt26f+/fsrODhYe/futamdBx0DSXrvvfdMMcTGxqpXr16mbaNHj9bFixe1efNm7d27V0OHDlXXrl0VFxdn1saMGTMUGxurgwcPau3atTp27JhCQ0NN27t06aI//vhDa9asUatWrbRt2zbVqVPHphu3ZsZ56NAh081o27Ztm2X2dHR0tNn+xMbGqkyZMg80Jrn1lSktLU3Dhg2Tv7+/XF1dZTQaFR8fb0rgt2zZUhUqVFClSpUUGhqqqKgoXb161ep4mjVrlmWf5s2bl6VcRESEKSks3U0ML1u2TJcvX7aqnwEDBiglJUVRUVF67rnntGzZMgUEBGjTpk251rWzs1NkZKR+//13ffrpp/L09NTEiRNNa53fG2NgYKBKliwpSWrTpo1SU1O1detWs/Ye9tiYMGGCUlJSNHfuXAUEBGju3LmqUqWK2WfXmu+APn36aPny5aYxjIiIUHBwsJydna2KIzejRo1Samqq6ZHdMjfInkf7t/M7BAAAYAPOe2zzbWBh7QtxVmpqqrZv357f4QAAgBw88kS6j4+PDAaDjh49+tBttWnTRocOHdLPP/9sU73w8HAdPnxY9vb2pseRI0dsWldakmrXri03NzdFRETYfIGgUKFC8vb2lre3t2rXrq3JkyfL09NTn332mU3tPOgYSFLJkiVNMXh7e5uW1UlMTNSsWbMUERGhF198UTVr1tTYsWNVt25dffnll2ZtuLu7y9vbW35+fmrbtq3GjRunJUuW6MSJE6Yyjo6OatmypUaPHq1du3apd+/eGjt2rM1x+vj4qHnz5vrss8+0a9cu/fTTT2blKlasaLY/3t7esre3f6Axya2vTMOGDdOqVas0ceJEUyK/evXqunnzpqS7a67v379fixYtkoeHh8aMGaOaNWtadRNPSSpSpEiWffL09DQrc+TIEe3evVvDhw83fZ4bNGhgurGntZydndW+fXtNmDBBBw8eVKNGjcxuHJsbT09PhYaGatasWTp8+LCuX7+uuXPnSrq7hv+CBQu0bt06U4yFCxfWhQsXshx3eXFslChRQsHBwZo6dari4+NVpkwZTZ061bTdmu+AzJnnS5cu1fHjxxUTE5OnNxl1cHBQ0aJFzR6wjl3BvL3xNAAAeLQ477FN4YIGGQsZVLRoURmNxvwOBwAA5MC2rOMDKF68uAIDA/Xll19q8ODBWdZJv3jxotXrpPfv31/VqlVThw4dtG7dOqtmhcfFxWnv3r3atm2bihcvbnr9woULatq0qY4ePWr1sjOVK1fWtGnT1LRpU9nZ2WnWrFlW1cuJnZ2drl27ZlOdBxmD3GTOmC5QwPy6ip2dndLT07OrYlZGksX9qFq1ao43TbWGNX3kldz6iomJUe/evdWpUydJd2eoJyUlmZWxt7dXixYt1KJFC40dO1aurq7aunWrOnfunCcxhoeHq3HjxlkuckRGRio8PFyvv/66zW0aDAZVqVIl15vw5qRYsWLy8PDQlStXJEnr16/X5cuXdeDAAdOYStJ///tfvfrqq7ke9w9ybGQqVKiQKleubIrF2u8AZ2dnBQcHKyIiQomJifL19VWjRo0eKAbkDXtjcbk1eVkOJctr7Nix8vDwyO+QAAAA8oybk0EDaxaSm5PB9JqHhwfnPQAAPKEeeSJduruueMOGDVW/fn2NHz9eNWrU0O3bt7Vp0ybNmTNH8fHxVrc1aNAg3blzR+3atdMPP/ygF154wWL58PBw1a9fP9sbPtarV0/h4eGaMmWK1f37+vrqp59+UtOmTWVvb2/1rNnbt28rJSVF0t0bRS5ZskRHjhzRiBEjrO47k61jkJsqVarI29tb/fr109SpU1WiRAmtXr1amzZt0tq1a83KXrx4USkpKUpPT9fx48c1fvx4+fr6yt/fX+fPn1dwcLD69OmjGjVqyNnZWXv37tWnn36qoKAgq+O5fPmyUlJSlJGRodOnT2v48OFyc3PT888//1D7mRd9+fj4aOXKlWrfvr0MBoNGjx5tdrFh7dq1+vXXX9W4cWMVK1ZM69evV3p6+gPdVDY7t27d0sKFCzV+/HhVq1bNbNtrr72m6dOn6/DhwwoICMixjdjYWI0dO1ahoaGqWrWqChUqpO3btysiIsKqz+NXX32l2NhYderUSZUrV9b169f1zTff6PDhw/riiy8k3T3u2rZta1pKJVPVqlU1ZMgQRUVFacCAAZIe7thYu3atFi9erO7du8vX11cZGRn6/vvvtX79ekVGRppisfY7oG/fvmrUqJHi4+PN+l+1apVGjRpl9suaKlWqaNKkSaaLKqNGjdKZM2f0zTff5Bo3rFPQuYRKN727dFRY2IB8jgYAACBvlSpcQINqOZq95uHhobCwsPwJCAAAWPRYEumVKlXS/v37NWHCBL377rtKTk6Wm5ubnnnmGc2ZM8fm9t555x2lp6erTZs22rBhQ45Jz5s3b+rbb7/NMSHXpUsXTZs2TRMnTrSpfz8/P23dutU0M33atGm51jl8+LBpVkHhwoVVuXJlzZkzx2ydcltYOwbWKFiwoNavX6+RI0eqffv2SktLk7e3txYsWKA2bdqYlX311Vcl3Z3B7O7ursaNG2vixImyt7eX0WjUs88+qxkzZigxMVG3bt1SuXLl9Prrr+v999+3Op4xY8ZozJgxkiQ3NzfVq1dPGzduVIkSJR54H/Oqr+nTp6tPnz56/vnnVbJkSY0YMcLsJpuurq5auXKlwsLCdP36dfn4+GjRokUWE9u2WLNmjc6fP29K3t7L399f/v7+Cg8Pt3jD1LJly8rLy0vjxo1TUlKSDAaD6fmQIUNyjaF+/frauXOn3nzzTf3xxx8yGo0KCAjQ6tWr1aRJE/35559at26dvvvuuyx1CxQooE6dOik8PNyUSH+YY6Nq1aoqXLiw3n33XZ0+fVoODg7y8fHRvHnzFBoaatN3QMGCBfXCCy/Iz89PJ06cMOs/NTVVCQkJZnUTEhKUmppqep6cnGzzzW4BAAAAAADw92DIyMu7geaRGzduyNHRUZs2bVKLFi3yO5x8wRgAT7dLly7JxcVF/iNXyM6hSO4V/uHiwgLzOwQAAP4xMs9TUlNT82R988z29oU4y1jIkHuFfyjf+am5FwIAAHnKlvOexzIj3RaXLl3SypUrVaBAAavXLn/aMAYAAAAAAAAA8OQokHuRx2vs2LEaMWKEPvnkE5UtWzbX8lFRUTIajdk+8mo5jdzk1L/RaFR0dLTN7f0dx8AajzPOJ21MTp06ZfFzkpdLgkRHR1vsKzcTJ07MsW7r1q3zLE5rPGnvIwAAAAAAAP6ZnsilXWxx+fJl/fnnn9luK1iwoCpUqPDIYzhx4kSO2zw9PeXk5PRI+38SxsAajzPOJ21Mbt++raSkpBy3e3l5yd4+b34gcu3aNZ05cybH7d7e3hbrX7hwQRcuXMh2m5OTkzw9PR8qPls8ae9jXmJpF9uwtAsAAI8PS7vkD5Z2AQDg8ftbL+1iK2dnZzk7O+drDLklJh+1J2EMrPE443zSxsTe3v6xfU6cnJweqq/ixYurePHieRjRg3vS3kcAAAAAAAD8Mz1xS7sAAAAAAAAAAPAkIZEOAAAAAAAAAIAFJNIBAAAAAAAAALCARDoAAAAAAAAAABaQSAcAAAAAAAAAwAIS6QAAAAAAAAAAWEAiHQAAAAAAAAAAC0ikAwAAAAAAAABgAYl0AAAAAAAAAAAsIJEOAAAAAAAAAIAF9vkdAAD8k+0e1UJFixbN7zAAAAAeOe+5v3PeAwAA/raYkQ4AAAAAAAAAgAUk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFpBIBwAAAAAAAADAAhLpAAAAAAAAAABYQCIdAAAAAAAAAAALSKQDAAAAAAAAAGABiXQAAAAAAAAAACwgkQ4AAAAAAAAAgAX2+R0AAAAAAODpd+LNsjIWMuR3GPib8J2fmt8hAABghhnpAAAAAAAAAABYQCIdAAAAAAAAAAALSKQDAAAAAAAAAGABiXQAAAAAAAAAACwgkQ4AAAAAAAAAgAUk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFpBIBwAAAAAAAADAAhLpAAAAAAAAAABYQCIdAAAAAAAAAAALSKQDAAAAAAAAAGABiXQAAAAAAAAAACwgkQ4AAAAAAAAAgAUk0gEAAAAAAAAAsIBEOgAAAAAAAAAAFpBIBwAAAAAAAADAgqc6kR4WFqZatWrldxiPRNOmTfXOO+9YLOPl5aXPPvvsscSDJ0tSUpIMBoNiY2PzO5Qstm3bJoPBoIsXL+Z3KAAAAAAAAIBV8iSRnpkYy+nRrFkzSf8/uVeqVCldvnzZrI1atWopLCzM9Lx3795Z2mnVqpVNcQ0bNkxbtmwxa7Njx44PvJ/3unXrlkaMGKHq1aurSJEiKlOmjHr16qU//vgj2/I3btxQrVq1ntjkJp5sefnZfdLcn1i/9/ukQIECcnFxUe3atTV8+HAlJyeb1Q0LC8v2O2fz5s2SpMOHD6tLly7y8vKSwWDI8cLSmTNn1LNnT5UoUUJOTk6qXr269u7d+yh32+TQoUOPpR8AAAAgv5y9mq4vYq/r7NX0PG87OTlZYWFhWf5WAAAgr+VJIv35559XcnJylsdXX30lg8Ggt956y6z85cuXNXXq1FzbbdWqlVl7ixYtsikuo9GoEiVK2FTHGjdv3tTVq1e1f/9+jR49Wvv379fKlSuVkJCgDh06ZFtn+PDhKlOmTJ7H8qjcunUrv0Ow2s2bN/M7hH+Ex/2ZSEhI0B9//KFffvlFI0aM0ObNm1WtWjXFxcWZlQsICMjy3dO4cWNJ0tWrV1WpUiVNnjxZ7u7u2fbz119/qWHDhipYsKB++OEHHTlyRNOmTVOxYsUe+T5KUnx8/GPpBwAAAMgv565laNbBmzp3LSPP205OTta4ceNIpAMAHrk8SaQXKlRI7u7uZo+//vpLw4YN0/vvv6/g4GCz8oMGDdL06dN19uxZi+06ODiYtXl/YmvEiBHy9fVV4cKFValSJY0ePdos2Xfv0i5hYWFasGCB/v3vf5tmrW7btk2SdPr0aXXt2lWurq4qXry4goKClJSUZGonczbwhAkTVKZMGfn5+cnFxUWbNm1S165d5efnpwYNGmjWrFnat2+fTp06ZRbnDz/8oI0bN2Z78eD8+fMKCQmRp6enChcurOrVq2e5YHDlyhX16tVLRqNRHh4emjZtWpZ2zp49q/bt28vJyUkVK1ZUVFSUxbG9n8Fg0Jw5c9ShQwcVKVJEEyZMMI1fRESEypcvL6PRqLfeekt37tzRp59+Knd3d5UqVUoTJkwwtZORkaGwsDCVL19eDg4OKlOmjAYPHmza7uXlpYkTJ6pPnz5ydnZW+fLl9X//939mscTFxal58+ZycnJSiRIl9MYbbygtLc3i+5H5a4elS5eqUaNGcnJyUr169XTs2DH98ssvqlu3roxGo1q3bq1z585ZNSZ37tzR0KFD5erqqhIlSmj48OF65ZVXzGaGZ7d8zv2/rpg+fbrplwvlypXTW2+9ZbY/8+fPl6urq3788Uf5+/vLaDSaLiJJlj+71rpz54769OmjKlWqmD6f//73v1WnTh05OjqqUqVKGjfu/7V352FRle8fxz8DCIIshmIgLqgguO97qaXliluZe27fvrm0qJnbTwW11DJzadEsFEtzTc3cdzS0TA1zC5Uy1NBKE8UNhfP7o8v5OgEDg+BAvV/XNdflnPOc89znYQbvuefhORN09+5d8zHWXhOfffaZAgIC5OXlpa5du1r8hUlqaqqmTJmiMmXKyNXVVdWqVdPKlSttileSihUrJl9fX5UvX15du3ZVdHS0fHx8NHDgQIt2Tk5OaX7/ODs7S5Lq1KmjadOmqWvXrnJxcUm3n7feekslS5bUggULVLduXZUpU0ZPP/20ypUrZ3PM1ty+fVtXr161eAAAAPwTkfcgIzfuGEpKztrj76+hjB73f7YCACA35coa6VeuXFH79u3VtGlTTZo0Kc3+bt26KTAwUBMnTrR6nl27dqlYsWIKDg7WwIEDdenSJYv9Hh4eioyM1PHjxzVr1ix9/PHHmjFjRrrnGj58uJ577jmLWe4NGzbUnTt31KJFC3l4eGjPnj2Kjo42FzLvn+m8fft2xcbGauvWrVq3bl26fSQmJspkMqlw4cLmbRcvXtQLL7ygzz77TG5ubmmOuXXrlmrVqqX169fr6NGj+u9//6tevXpp//795javv/66oqKi9OWXX2rLli3atWuXDh06ZHGePn366OzZs9q5c6dWrlypDz/8MNMvKv4uPDxcHTt21JEjR9SvXz9JUlxcnDZu3KhNmzZpyZIlioiIUJs2bXTu3DlFRUXprbfe0tixY/Xtt99Kkr744gvNmDFDH330kU6dOqU1a9aoSpUqFv1Mnz5dtWvX1vfff69BgwZp4MCBio2NlfTXlwYtWrTQI488ou+++04rVqzQtm3b9NJLL1mcI6OfR1hYmMaOHatDhw7JyclJ3bt314gRIzRr1izt2bNHp0+f1vjx47M0HtOnT1dkZKTmz5+vr7/+WpcvX9bq1attGlNJcnBw0OzZs3Xs2DEtXLhQO3bs0IgRIyza3LhxQ++8844+++wz7d69W/Hx8Ro+fLikjF+7WXX79m117txZMTEx2rNnj0qVKqU9e/bo+eef16uvvqrjx4/ro48+UmRkpMWXIlLGr4k1a9Zo3bp1WrdunaKiojR16lTzMVOmTNGnn36quXPn6tixYxo6dKh69uypqKgom8fufq6urhowYICio6Ntfm1bs3btWtWuXVudO3dWsWLFVKNGDX388cc5dv57pkyZIi8vL/OjZMmSOd4HAABAXkDeg4z03HxDtZZcy9Lj/teQtUeTJk3sfVkAgH8Jp5w+YWpqqrp37y4nJyctXrxYJpMpTRuTyaSpU6cqNDRUQ4cOTXfmZ8uWLdWpUyeVKVNGcXFxGjNmjFq1aqV9+/bJ0dFRkjR27Fhz+4CAAA0fPlxLly5NU6SU/lrmxdXVVbdv37ZY4mHRokVKTU3VJ598Yo51wYIFKly4sHbt2qWnn35aklSoUCF98skn5pmuf3fr1i2NHDlS3bp1k6enp6S/Zmf36dNHAwYMUO3atS1mud/j7+9vLphKf83W37x5s5YvX666desqKSlJERERWrRokZo1ayZJWrhwoUqUKGE+5uTJk9q4caP279+vOnXqSJIiIiJUoUKFdGPNSPfu3dW3b1+LbampqZo/f748PDxUsWJFPfHEE4qNjdWGDRvk4OCg4OBgvfXWW9q5c6fq1aun+Ph4+fr6qnnz5ipQoIBKlSqlunXrWpyzdevW5uV+Ro4cqRkzZmjnzp0KDg7W559/rlu3bunTTz9VoUKFJEnvv/++QkND9dZbb+nRRx+VlPbncW9shw8frhYtWkiSXn31VXXr1k3bt29Xo0aNJEn9+/dXZGRklsZj5syZGj16tDp16iRJmjt3rjZv3mzTmEqyuClsQECA3njjDQ0YMEAffvihefudO3c0d+5c83vhpZdeMn/RlNFrNyuSkpLUpk0b3b59Wzt37pSXl5ckacKECRo1apR69+4tSSpbtqwmTZqkESNGKCwszHx8Rq+JyMhIeXh4SJJ69eql7V4i+rAAADcfSURBVNu3680339Tt27c1efJkbdu2TQ0aNDCf++uvv9ZHH330wEluSEiIpL9+3sWKFZP0118wuLu7m9tUrFjR4ouozPz000+aM2eOhg0bpjFjxui7777TK6+8ImdnZ/P45ITRo0dr2LBh5udXr17lQyUAAPhHIu9BRha1cFMFb8cstQ2cey5L7WJiYiimAwAeihwvpI8ZM0b79u3T/v37zYW29LRo0UKPPfaYxo0bp88//zzN/q5du5r/XaVKFVWtWlXlypXTrl27zAXlZcuWafbs2YqLi1NSUpLu3r1rLmJn1eHDh3X69Ok0sd66dUtxcXEWMWRURL9z546ee+45GYahOXPmmLe/9957unbtmkaPHp1h/ykpKZo8ebKWL1+u8+fPKzk5Wbdv3zbPXo+Li1NycrLq1atnPsbb21vBwcHm5ydOnJCTk5Nq1apl3hYSEmIxMz4rateunWZbQECAxdg8+uijcnR0lIODg8W2ezOEO3furJkzZ6ps2bJq2bKlWrdurdDQUDk5/e+lVrVqVfO/TSaTfH19zcefOHFC1apVMxfRJalRo0ZKTU1VbGysuZCe0c/j/nPf3za9WK1JTExUQkKCxbg7OTmpdu3aMgzb1vXbtm2bpkyZoh9//FFXr17V3bt3devWLd24ccP8c3Zzc7P4QsnPzy9HZl1369ZNJUqU0I4dO+Tq6mrefvjwYUVHR1vMQE9JSUkTV1ZeE/fHevr0ad24cUNPPfWUxTHJycmqUaPGA1/PvbG//wu64OBgrV271vw8oyVcMpKamqratWtr8uTJkqQaNWro6NGjmjt3bo4W0l1cXGyODQAAID8i70FG3AqY5O6cdrJderL62f7+STUAAOSmHC2kL126VO+8847Wr1+voKCgTNtPnTpVDRo00Ouvv55p27Jly6po0aI6ffq0mjVrpn379qlHjx6aMGGCWrRoIS8vLy1dujTd9cOtSUpKUq1atdJdU9zHx8f87/sLu/e7V0T/5ZdftGPHDov/7Hfs2KF9+/alSSJr166tHj16aOHChZo2bZpmzZqlmTNnmtfRHjJkiF1uoJneNRYoUMDiuclkSndbaupfd18vWbKkYmNjtW3bNm3dulWDBg3StGnTFBUVZT7O2vEPEuvfz32v2Pr3bbb2ZY2Dg0Oawvr96/SfOXNGbdu21cCBA/Xmm2/K29tbX3/9tfr376/k5GRzwTq9MbG1YJ+e1q1ba9GiRdq3b5+efPJJ8/akpCRNmDDBPNv+fgULFjT/O6uviXtjem99wvXr18vf39+iXU58mLp3Y86AgADzNmdnZwUGBmb7nH5+fqpYsaLFtgoVKuiLL77I9jltYetfjgAAAAD5jY+rSS9Vc5aPa9aK6Lbw8/NTWFiY/Pz8cvzcAADcL8cK6TExMerfv7+mTp1qXlojM3Xr1lWnTp00atSoTNueO3dOly5dMv/nuHfvXpUuXVr/93//Z27zyy+/WD2Hs7OzUlJSLLbVrFlTy5YtU7FixWyezX6viH7q1Cnt3LlTRYoUsdg/e/ZsvfHGG+bnv/76q1q0aKFly5aZZzpHR0erffv26tmzp6S/ZseePHnSXNgrV66cChQooG+//ValSpWSJP355586efKk+c/XQkJCdPfuXR08eNC8tEtsbKyuXLli0/XkFFdXV4WGhio0NFSDBw9WSEiIjhw5opo1a2Z6bIUKFRQZGanr16+bi7jR0dHmZWQeFi8vL/n5+enbb79V48aNJck8xvdfh4+Pj8Xd4a9evaqff/7Z/PzgwYNKTU3V9OnTzbP4ly9fbnM86b12s2LgwIGqXLmy2rVrp/Xr15tfMzVr1lRsbOwDFaDTU7FiRbm4uCg+Pj7H/7zy5s2bmjdvnho3bmzxJdeDatSokXmN/ntOnjyp0qVL51gf1tz/VxQAAADAP1ExNwe9XL1g5g2zwc/PT+Hh4blybgAA7pcjhfQ//vhDHTp0UNOmTdWzZ09duHDBYr+jo2OGha8333xTlSpVslj6495s2WeeeUa+vr6Ki4vTiBEjFBgYaC7SBwUFKT4+XkuXLlWdOnW0fv36TG8EGRAQoM2bNys2NlZFihSRl5eXevTooWnTpql9+/aaOHGiSpQooV9++UWrVq3SiBEjLNYiv9+dO3f07LPP6tChQ1q3bp1SUlLM1+3t7S1nZ2dz4fuee39yVq5cOfN5g4KCtHLlSu3du1ePPPKI3n33XV28eNFcSHd3d1f//v31+uuvq0iRIipWrJj+7//+z2JpleDgYLVs2VIvvvii5syZIycnJw0ZMsRiKY+HJTIyUikpKapXr57c3Ny0aNEiubq6Zrko2aNHD4WFhal3794KDw/X77//rpdfflm9evUyL9XysLz66quaOnWqgoKCFBISonfffTfNlxNPPvmkIiMjFRoaqsKFC2v8+PHmNfwlKTAwUHfu3NF7772n0NBQRUdHa+7cuTbHkt5r9+8zwzPy8ssvKyUlRW3bttXGjRv12GOPafz48Wrbtq1KlSqlZ599Vg4ODjp8+LCOHj1q8eWPrTw8PDR8+HANHTpUqampeuyxx5SYmKjo6Gh5enratFTKb7/9plu3bunatWs6ePCg3n77bf3xxx9atWpVls+RnJys48ePm/99/vx5xcTEyN3d3fwlwtChQ9WwYUNNnjxZzz33nPbv36958+Zp3rx55vOMHj1a58+f16effipJ2r9/v55//nlt377dPPO+WbNm6tixY5ob4wIAAAAAACD/c8i8SebWr1+vX375RRs2bJCfn1+ax71Z0ukpX768+vXrp1u3bpm3OTo66ocfflC7du1Uvnx59e/fX7Vq1dKePXvMy0O0a9dOQ4cO1UsvvaTq1atr7969GjdunNU4X3jhBQUHB6t27dry8fFRdHS03NzctHv3bpUqVUqdOnVShQoV1L9/f926dcvqDPXz589r7dq1OnfunKpXr25xvXv37s3y2I0dO1Y1a9ZUixYt1LRpU/n6+qpDhw4WbaZNm6bHH39coaGhat68uR577DGL9dClv26QWrx4cTVp0kSdOnXSf//7X/PNGB+mwoUL6+OPP1ajRo1UtWpVbdu2TV999VWa2foZcXNz0+bNm3X58mXVqVNHzz77rJo1a6b3338/lyNP67XXXlOvXr3Uu3dvNWjQQB4eHurYsaNFm9GjR6tJkyZq27at2rRpow4dOlisdV6tWjW9++67euutt1S5cmUtXrxYU6ZMsTmW9F67thgyZIgmTJig1q1ba+/evWrRooXWrVunLVu2qE6dOqpfv75mzJiRI7OwJ02apHHjxmnKlCmqUKGCWrZsqfXr16tMmTI2nSc4OFjFixdXrVq1NHXqVDVv3lxHjx5NswyLNb/++qtq1KihGjVqKCEhQe+8845q1Kih//znP+Y2derU0erVq7VkyRJVrlxZkyZN0syZM9WjRw9zm4SEBMXHx5uf37hxQ7GxsRbL+MTFxemPP/6w6RoBAAAAAACQP5iMnFiIGfiX6NOnj65cuaI1a9bYOxTkc1evXpWXl5cSExNtXlYKAAAgN+V0nnLvfAe7eWT5RpNA+chEe4cAAPgXsCXvyZEZ6QAAAAAAAAAA/FNluZAeHx8vd3f3DB/3L3uAvGXx4sUZ/twqVapk7/Dsxtrrec+ePfYOz6rJkydnGHurVq3sHR4AAAAAAADwj5LlpV3u3r2rM2fOZLg/ICDA4oahyDuuXbumixcvpruvQIECObIudn50+vTpDPf5+/vb5WatWXX58mVdvnw53X2urq7mG2Ai72JpFwAAkFextAvyApZ2AQA8DLbkPVmufDs5OSkwMPCBg8PD5+HhIQ8PD3uHkefk59ezt7e3vL297R0GAAAAAAAA8K/AGukAAAAAAAAAAFhBIR0AAAAAAAAAACsopAMAAAAAAAAAYAWFdAAAAAAAAAAArKCQDgAAAAAAAACAFRTSAQAAAAAAAACwgkI6AAAAAAAAAABWUEgHAAAAAAAAAMAKCukAAAAAAAAAAFjhZO8AAAAAAAD/fIFzz8nT09PeYQAAAGQLM9IBAAAAAAAAALCCQjoAAAAAAAAAAFZQSAcAAAAAAAAAwAoK6QAAAAAAAAAAWEEhHQAAAAAAAAAAKyikAwAAAAAAAABgBYV0AAAAAAAAAACsoJAOAAAAAAAAAIAVFNIBAAAAAAAAALCCQjoAAAAAAAAAAFY42TsAAPg3qz9lmxxdCtk7DJsdCW9h7xAAAEA+c3pACbk7m+wdhk3KRybaOwQAAJBHMCMdAAAAAAAAAAArKKQDAAAAAAAAAGAFhXQAAAAAAAAAAKygkA4AAAAAAAAAgBUU0gEAAAAAAAAAsIJCOgAAAAAAAAAAVlBIBwAAAAAAAADACgrpAAAAAAAAAABYQSEdAAAAAAAAAAArKKQDAAAAAAAAAGAFhXQAAAAAAAAAAKygkA4AAAAAAAAAgBUU0gEAAAAAAAAAsIJCOgAAAAAAAAAAVlBIBwAAAAAAAADAijxTSDeZTFqzZk26z8+cOSOTyaSYmJhc6z88PFzVq1c3P+/Tp486dOhgft60aVMNGTIk1/qX7D8GSCsyMlKFCxe2dxgAAAAAAAAA7OihFdIvXLigl19+WWXLlpWLi4tKliyp0NBQbd++XZKUkJCgVq1amdv//XlOmDJlihwdHTVt2rRM286aNUuRkZE50m94eLhMJpP54eXlpccff1xRUVFWj8vJMQgICLCIwWQyqUSJEub9Fy5cUK9eveTr66tChQqpZs2a+uKLLyzOcf+xTk5OKlWqlIYNG6bbt2+b2/z+++8aOHCgSpUqJRcXF/n6+qpFixaKjo62OU5HR0cVL15c/fv3159//mlus2vXLplMJl25ciXd42fOnJljfXXp0kUnT57M0vke1N+/vLnH2vWGhITIxcVFFy5csKmvn3/+Wd27d1fx4sVVsGBBlShRQu3bt9ePP/6YpeOjoqL05JNPytvbW25ubgoKClLv3r2VnJycpu2LL74oR0dHrVixIs2+7L437nf48GG1a9dOxYoVU8GCBRUQEKAuXbrot99+S9M2vd8BX3zxhRwdHXX+/Pl0zx8UFKRhw4ZlOR4AAAAAAAD88zyUQvqZM2dUq1Yt7dixQ9OmTdORI0e0adMmPfHEExo8eLAkydfXVy4uLuZj/v48J8yfP18jRozQ/PnzM23r5eWVozORK1WqpISEBCUkJGjfvn0KCgpS27ZtlZiYmOExOT0GEydONMeQkJCg77//3rzv+eefV2xsrNauXasjR46oU6dOeu655yzaSNKCBQuUkJCgn3/+WR9++KE+++wzvfHGG+b9zzzzjL7//nstXLhQJ0+e1Nq1a9W0aVNdunTJ5jjj4+O1ePFi7d69W6+88sqDD0A2+nJ1dVWxYsVype8H9fXXX+vmzZt69tlntXDhwiwfd+fOHT311FNKTEzUqlWrFBsbq2XLlqlKlSrpFuv/7vjx42rZsqVq166t3bt368iRI3rvvffk7OyslJQUi7Y3btzQ0qVLrb7vsvPeuOf3339Xs2bN5O3trc2bN+vEiRNasGCBihcvruvXr6dpn97vgHbt2qlIkSLpjuHu3bt1+vRp9e/fP9NY/i3uXLuki7s+U0xMjMLDw5WQkGDvkAAAAHLMbzdS9V7MLf12I9W8LSEhgbwHAAA8nEL6oEGDZDKZtH//fj3zzDMqX768KlWqpGHDhumbb76RZH1Zk79LSUlRv379FBISovj4+CzFEBUVpZs3b2rixIm6evWq9u7da7V9RrOD71m/fr28vLy0ePHiLPXv5OQkX19f+fr6qmLFipo4caKSkpKsznbO6THw8PAwx+Dr6ysfHx/zvr179+rll19W3bp1VbZsWY0dO1aFCxfWwYMHLc5RuHBh+fr6qmTJkmrbtq3at2+vQ4cOSZKuXLmiPXv26K233tITTzyh0qVLq27duho9erTatWuXpRjvj9Pf319PPPGEevfube4jp2XW19+XdomLi1P79u316KOPyt3dXXXq1NG2bdsszvnhhx8qKChIBQsW1KOPPqpnn302V2KPiIhQ9+7d1atXryx9OXTPsWPHFBcXpw8//FD169dX6dKl1ahRI73xxhuqX79+psdv2bJFvr6+evvtt1W5cmWVK1dOLVu21McffyxXV1eLtitWrFDFihU1atQo7d69W2fPnk1zvuy8N+6Jjo5WYmKiPvnkE9WoUUNlypTRE088oRkzZqhMmTIWbTP6HVCgQAH16tUr3b9AmT9/vurVq6dKlSplGsu/xd2ky/o9arGOHTumCRMm8IESAAD8o/x+09D7h5P1+03DvC0hIYG8BwAA5H4h/fLly9q0aZMGDx6sQoUKpdlv66zv27dvq3PnzoqJidGePXtUqlSpLB0XERGhbt26qUCBAurWrZsiIiJs6vd+n3/+ubp166bFixerR48eNh9/+/ZtLViwQIULF1ZwcHC2js/OGFjTsGFDLVu2TJcvX1ZqaqqWLl2qW7duqWnTphkec/LkSe3YsUP16tWTJLm7u8vd3V1r1qyxWO7lQZw/f15fffWVuY/clJW+kpKS1Lp1a23fvl3ff/+9WrZsqdDQUPOXGQcOHNArr7yiiRMnKjY2Vps2bVLjxo1zPNZr165pxYoV6tmzp3l2+Z49e7J0rI+PjxwcHLRy5co0M8izwtfXVwkJCdq9e3embSMiItSzZ095eXmpVatWmS6XZOt7w9fXV3fv3tXq1atlGIbVttZ+B/Tv31+nTp2yuKakpCStXLkyx2aj3759W1evXrV45Gc3b960dwgAACCP+ifkPTfuGEpKNnT16lUlJSXZOxwAAJAH5Hoh/fTp0zIMQyEhIQ98rqSkJLVp00a///67du7caTGj2pqrV69q5cqV6tmzpySpZ8+eWr58ebYSog8++ECDBg3SV199pbZt22b5uCNHjpgLza6urnrnnXe0ZMkSeXp62tR/dsdAkkaOHGmOwd3dXbNnzzbvW758ue7cuaMiRYrIxcVFL774olavXq3AwECLc3Tr1k3u7u4qWLCggoODValSJY0ePVrSXzOLIyMjtXDhQhUuXFiNGjXSmDFj9MMPP9h0jffidHV1VYkSJWQymfTuu++maVeiRAmL63F3d8/y7Hxb+7qnWrVqevHFF1W5cmUFBQVp0qRJKleunNauXStJio+PV6FChdS2bVuVLl1aNWrUsGlZmnXr1qW5pvTWyV+6dKmCgoJUqVIlOTo6qmvXrln+csjf31+zZ8/W+PHj9cgjj+jJJ5/UpEmT9NNPP2Xp+M6dO6tbt25q0qSJ/Pz81LFjR73//vtpPiCdOnVK33zzjbp06SLpr/fdggUL0hS8H+S9Ub9+fY0ZM0bdu3dX0aJF1apVK02bNk0XL160aJfZ74CKFSuqfv36FjP7ly9fLsMw1LVr1yyNS2amTJkiLy8v86NkyZI5cl57eeGFF+wdAgAAyKP+CXlPz803VGvJNXl5ealJkyb2DgcAAOQBuV5Iz2yWqC26deum69eva8uWLfLy8srycUuWLFG5cuVUrVo1SVL16tVVunRpLVu2zKb+V65cqaFDh2rr1q02J1PBwcGKiYlRTEyMDh48qIEDB6pz5846cOCATefJ7hhI0uuvv26OISYmRs8//7x537hx43TlyhVt27ZNBw4c0LBhw/Tcc8/pyJEjFueYMWOGYmJidPjwYa1bt04nT55Ur169zPufeeYZ/frrr1q7dq1atmypXbt2qWbNmjbduPVenD/88IP5ZrRt2rRJM3t6z549FtcTExOj4sWLZ2tMMuvrnqSkJA0fPlwVKlRQ4cKF5e7urhMnTpgL+E899ZRKly6tsmXLqlevXlq8eLFu3LiR5XieeOKJNNf0ySefpGk3f/58c1FY+qswvGLFCl27di1L/QwePFgXLlzQ4sWL1aBBA61YsUKVKlXS1q1bMz3W0dFRCxYs0Llz5/T222/L399fkydPNq91fn+MLVq0UNGiRSVJrVu3VmJionbs2GFxvgd9b7z55pu6cOGC5s6dq0qVKmnu3LkKCQmxeO1m5XdAv379tHLlSvMYzp8/X507d5aHh0eW4sjM6NGjlZiYaH6kt8xNfvLxxx/bOwQAAJBH/RPynkUt3HSwm4cSExMVFRVl73AAAEAekOuF9KCgIJlMJv34448PfK7WrVvrhx9+0L59+2w6LiIiQseOHZOTk5P5cfz4cZvWlZakGjVqyMfHR/Pnz7f5CwJnZ2cFBgYqMDBQNWrU0NSpU+Xv76+ZM2fadJ7sjoEkFS1a1BxDYGCgeVmduLg4vf/++5o/f76aNWumatWqKSwsTLVr19YHH3xgcQ5fX18FBgYqODhYbdq00YQJE7Rs2TKdPn3a3KZgwYJ66qmnNG7cOO3du1d9+vRRWFiYzXEGBQXpySef1MyZM7V3717t3LnTol2ZMmUsricwMFBOTk7ZGpPM+rpn+PDhWr16tSZPnmwu5FepUkXJycmS/lpz/dChQ1qyZIn8/Pw0fvx4VatWLUs38ZSkQoUKpbkmf39/izbHjx/XN998oxEjRphfz/Xr1zff2DOrPDw8FBoaqjfffFOHDx/W448/bnHj2Mz4+/urV69eev/993Xs2DHdunVLc+fOlfTXGv4LFy7U+vXrzTG6ubnp8uXLad53OfHeKFKkiDp37qx33nlHJ06cUPHixfXOO++Y92fld8C9mefLly/XqVOnFB0dnaM3GXVxcZGnp6fFIz/7+3r4AAAA9/wT8h63Aia5O5vk6ekpd3d3e4cDAADyANuqjtng7e2tFi1a6IMPPtArr7ySZp30K1euZHmd9IEDB6py5cpq166d1q9fn6VZ4UeOHNGBAwe0a9cueXt7m7dfvnxZTZs21Y8//pjlZWfKlSun6dOnq2nTpnJ0dNT777+fpeMy4ujoaPM6w9kZg8zcmzHt4GD5vYqjo6NSU1PTO8SijWR9veSKFStmeNPUrMhKHzkls76io6PVp08fdezYUdJfM9TPnDlj0cbJyUnNmzdX8+bNFRYWpsKFC2vHjh3q1KlTjsQYERGhxo0bp/mSY8GCBYqIiMjWkhsmk0khISGZ3oQ3I4888oj8/Px0/fp1SdKGDRt07do1ff/99+YxlaSjR4+qb9++mb7vs/PeuMfZ2VnlypUzx5LV3wEeHh7q3Lmz5s+fr7i4OJUvX16PP/54tmL4J3Ny95ZPkx6qVKmSwsLC5OfnZ++QAAAAcoyPq0kvVXOWj6vJvM3Pz4+8BwAA5H4hXfprXfFGjRqpbt26mjhxoqpWraq7d+9q69atmjNnjk6cOJHlc7388stKSUlR27ZttXHjRj322GNW20dERKhu3brp3vCxTp06ioiI0LRp07Lcf/ny5bVz5041bdpUTk5OWZ41e/fuXV24cEHSXzeKXLZsmY4fP66RI0dmue97bB2DzISEhCgwMFAvvvii3nnnHRUpUkRr1qzR1q1btW7dOou2V65c0YULF5SamqpTp05p4sSJKl++vCpUqKBLly6pc+fO6tevn6pWrSoPDw8dOHBAb7/9ttq3b5/leK5du6YLFy7IMAydPXtWI0aMkI+Pjxo2bPhA15kTfQUFBWnVqlUKDQ2VyWTSuHHjLL5sWLdunX766Sc1btxYjzzyiDZs2KDU1NRs3VQ2PXfu3NFnn32miRMnqnLlyhb7/vOf/+jdd9/VsWPHVKlSpQzPERMTo7CwMPXq1UsVK1aUs7OzoqKiNH/+/Cy9Hj/66CPFxMSoY8eOKleunG7duqVPP/1Ux44d03vvvSfpr/ddmzZtzEup3FOxYkUNHTpUixcv1uDBgyU92Htj3bp1Wrp0qbp27ary5cvLMAx99dVX2rBhgxYsWGCOJau/A/r376/HH39cJ06csOh/9erVGj16tMVf1oSEhGjKlCnmL1VGjx6t8+fP69NPP8007vysgEcRPdq0l6pXr67q1avbOxwAAIAcVczNQS9XL2ixzc/PT+Hh4fYJCAAA5BkPpZBetmxZHTp0SG+++aZee+01JSQkyMfHR7Vq1dKcOXNsPt+QIUOUmpqq1q1ba9OmTRkWPZOTk7Vo0aIMC3LPPPOMpk+frsmTJ9vUf3BwsHbs2GGemT59+vRMjzl27Jh5BoObm5vKlSunOXPmWKxTbousjkFWFChQQBs2bNCoUaMUGhqqpKQkBQYGauHChWrdurVF2759+0r6awazr6+vGjdurMmTJ8vJyUnu7u6qV6+eZsyYobi4ON25c0clS5bUCy+8oDFjxmQ5nvHjx2v8+PGSJB8fH9WpU0dbtmxRkSJFsn2NOdXXu+++q379+qlhw4YqWrSoRo4caXGTzcKFC2vVqlUKDw/XrVu3FBQUpCVLllgtbNti7dq1unTpkrl4e78KFSqoQoUKioiIsHrD1BIlSiggIEATJkzQmTNnZDKZzM+HDh2aaQx169bV119/rQEDBujXX3+Vu7u7KlWqpDVr1qhJkya6ePGi1q9fr88//zzNsQ4ODurYsaMiIiLMhfQHeW9UrFhRbm5ueu2113T27Fm5uLgoKChIn3zyiXr16mXT74ACBQroscceU3BwsE6fPm3Rf2JiomJjYy2OjY2NVWJiovl5QkKCzTe7BQAAAAAAQP5gMnLybqA55Pbt2ypYsKC2bt2q5s2b2zscu2AMgH+2q1evysvLSxVGfSFHl0KZH5DHHAlvYe8QAABALrmXpyQmJubI+ub3znewm4fcnU2ZH5CHlI9MzLwRAADIt2zJex7KjHRbXL16VatWrZKDg0OW1y7/p2EMAAAAAAAAACDvcMi8ycMVFhamkSNH6q233lKJEiUybb948WK5u7un+8ip5TQyk1H/7u7u2rNnj83ny49jkBUPM868Nibx8fFWXyc5uSTInj17rPaVmcmTJ2d4bKtWrXIszqzIaz9HAAAAAAAA/DvlyaVdbHHt2jVdvHgx3X0FChRQ6dKlcz2G06dPZ7jP399frq6uudp/XhiDrHiYcea1Mbl7967OnDmT4f6AgAA5OeXMH4jcvHlT58+fz3B/YGCg1eMvX76sy5cvp7vP1dVV/v7+DxSfLfLazzEnsbQLAADIq1ja5X9Y2gUAgH+2fL20i608PDzk4eFh1xgyK0zmtrwwBlnxMOPMa2Pi5OT00F4nrq6uD9SXt7e3vL29czCi7MtrP0cAAAAAAAD8O+W5pV0AAAAAAAAAAMhLKKQDAAAAAAAAAGAFhXQAAAAAAAAAAKygkA4AAAAAAAAAgBUU0gEAAAAAAAAAsIJCOgAAAAAAAAAAVlBIBwAAAAAAAADACgrpAAAAAAAAAABYQSEdAAAAAAAAAAArKKQDAAAAAAAAAGCFk70DAIB/s29GN5enp6e9wwAAAMh1gXPPkfcAAIB8ixnpAAAAAAAAAABYQSEdAAAAAAAAAAArKKQDAAAAAAAAAGAFhXQAAAAAAAAAAKygkA4AAAAAAAAAgBUU0gEAAAAAAAAAsIJCOgAAAAAAAAAAVlBIBwAAAAAAAADACgrpAAAAAAAAAABYQSEdAAAAAAAAAAArKKQDAAAAAAAAAGAFhXQAAAAAAAAAAKygkA4AAAAAAAAAgBUU0gEAAAAAAAAAsIJCOgAAAAAAAAAAVlBIBwAAAAAAAADACgrpAAAAAAAAAABYQSEdAAAAAAAAAAArKKQDAAAAAAAAAGAFhXQAAAAAAAAAAKygkA4AAAAAAAAAgBUU0gEAAAAAAAAAsIJCOgAAAAAAAAAAVlBIBwAAAAAAAADACgrpAAAAAAAAAABYQSEdAAAAAAAAAAArKKQDAAAAAAAAAGAFhXQAAAAAAAAAAKygkA4AAAAAAAAAgBVO9g4AAP6NDMOQJF29etXOkQAAAFi6l5/cy1ceFHkPAADIq2zJeyikA4AdXLp0SZJUsmRJO0cCAACQvmvXrsnLy+uBz0PeAwAA8rqs5D0U0gHADry9vSVJ8fHxOfIB9d/g6tWrKlmypM6ePStPT097h5NvMG7Zw7hlD+NmO8Ysexi37MnquBmGoWvXrql48eI50i95T/bwOrcdY5Y9jFv2MG7Zw7jZjjHLntzIeyikA4AdODj8dYsKLy8v/iO0kaenJ2OWDYxb9jBu2cO42Y4xyx7GLXuyMm45WfAm73kwvM5tx5hlD+OWPYxb9jButmPMsicn8x5uNgoAAAAAAAAAgBUU0gEAAAAAAAAAsIJCOgDYgYuLi8LCwuTi4mLvUPINxix7GLfsYdyyh3GzHWOWPYxb9thr3Ph5ZQ/jZjvGLHsYt+xh3LKHcbMdY5Y9uTFuJsMwjBw7GwAAAAAAAAAA/zDMSAcAAAAAAAAAwAoK6QAAAAAAAAAAWEEhHQAAAAAAAAAAKyikAwAAAAAAAABgBYV0AHjIPvjgAwUEBKhgwYKqV6+e9u/fb++Q8rzdu3crNDRUxYsXl8lk0po1a+wdUp43ZcoU1alTRx4eHipWrJg6dOig2NhYe4eV582ZM0dVq1aVp6enPD091aBBA23cuNHeYeUrU6dOlclk0pAhQ+wdSp4WHh4uk8lk8QgJCbF3WPnC+fPn1bNnTxUpUkSurq6qUqWKDhw4YO+w8rSAgIA0rzeTyaTBgwfnet/kPbYj77EdeU/2kPc8OPKerCHvyT7yHtvlZt5DIR0AHqJly5Zp2LBhCgsL06FDh1StWjW1aNFCv/32m71Dy9OuX7+uatWq6YMPPrB3KPlGVFSUBg8erG+++UZbt27VnTt39PTTT+v69ev2Di1PK1GihKZOnaqDBw/qwIEDevLJJ9W+fXsdO3bM3qHlC999950++ugjVa1a1d6h5AuVKlVSQkKC+fH111/bO6Q8788//1SjRo1UoEABbdy4UcePH9f06dP1yCOP2Du0PO27776zeK1t3bpVktS5c+dc7Ze8J3vIe2xH3pM95D0PhrzHNuQ9tiPvyZ7czHtMhmEYD3wWAECW1KtXT3Xq1NH7778vSUpNTVXJkiX18ssva9SoUXaOLn8wmUxavXq1OnToYO9Q8pXff/9dxYoVU1RUlBo3bmzvcPIVb29vTZs2Tf3797d3KHlaUlKSatasqQ8//FBvvPGGqlevrpkzZ9o7rDwrPDxca9asUUxMjL1DyVdGjRql6Oho7dmzx96h5GtDhgzRunXrdOrUKZlMplzrh7znwZH3ZA95T/aR92QNeY9tyHuyh7wnZ+Rk3sOMdAB4SJKTk3Xw4EE1b97cvM3BwUHNmzfXvn377BgZ/g0SExMl/fXhCFmTkpKipUuX6vr162rQoIG9w8nzBg8erDZt2lj8joN1p06dUvHixVW2bFn16NFD8fHx9g4pz1u7dq1q166tzp07q1ixYqpRo4Y+/vhje4eVryQnJ2vRokXq169frhbRyXtgT+Q9tiPvsQ15j+3Ie2xH3vPgcjrvoZAOAA/JH3/8oZSUFD366KMW2x999FFduHDBTlHh3yA1NVVDhgxRo0aNVLlyZXuHk+cdOXJE7u7ucnFx0YABA7R69WpVrFjR3mHlaUuXLtWhQ4c0ZcoUe4eSb9SrV0+RkZHatGmT5syZo59//lmPP/64rl27Zu/Q8rSffvpJc+bMUVBQkDZv3qyBAwfqlVde0cKFC+0dWr6xZs0aXblyRX369MnVfsh7YC/kPbYh77EdeY/tyHuyh7znweV03uOUI2cBAAB51uDBg3X06FHWIcyi4OBgxcTEKDExUStXrlTv3r0VFRXFh8oMnD17Vq+++qq2bt2qggUL2jucfKNVq1bmf1etWlX16tVT6dKltXz5cv6c3orU1FTVrl1bkydPliTVqFFDR48e1dy5c9W7d287R5c/REREqFWrVipevLi9QwFyBXmPbch7bEPekz3kPdlD3vPgcjrvYUY6ADwkRYsWlaOjoy5evGix/eLFi/L19bVTVPine+mll7Ru3Trt3LlTJUqUsHc4+YKzs7MCAwNVq1YtTZkyRdWqVdOsWbPsHVaedfDgQf3222+qWbOmnJyc5OTkpKioKM2ePVtOTk5KSUmxd4j5QuHChVW+fHmdPn3a3qHkaX5+fmmKOxUqVODPw7Pol19+0bZt2/Sf//wn1/si74E9kPfYjrzHNuQ9OYO8J2vIex5MbuQ9FNIB4CFxdnZWrVq1tH37dvO21NRUbd++nXUIkeMMw9BLL72k1atXa8eOHSpTpoy9Q8q3UlNTdfv2bXuHkWc1a9ZMR44cUUxMjPlRu3Zt9ejRQzExMXJ0dLR3iPlCUlKS4uLi5OfnZ+9Q8rRGjRopNjbWYtvJkydVunRpO0WUvyxYsEDFihVTmzZtcr0v8h48TOQ9OYe8xzrynpxB3pM15D0PJjfyHpZ2AYCHaNiwYerdu7dq166tunXraubMmbp+/br69u1r79DytKSkJIvZCj///LNiYmLk7e2tUqVK2TGyvGvw4MH6/PPP9eWXX8rDw8O8Hq2Xl5dcXV3tHF3eNXr0aLVq1UqlSpXStWvX9Pnnn2vXrl3avHmzvUPLszw8PNKsQVuoUCEVKVKEtWmtGD58uEJDQ1W6dGn9+uuvCgsLk6Ojo7p162bv0PK0oUOHqmHDhpo8ebKee+457d+/X/PmzdO8efPsHVqel5qaqgULFqh3795ycno4HwPJe7KHvMd25D3ZQ95jO/Ke7CHvyR7ynuzLtbzHAAA8VO+9955RqlQpw9nZ2ahbt67xzTff2DukPG/nzp2GpDSP3r172zu0PCu98ZJkLFiwwN6h5Wn9+vUzSpcubTg7Oxs+Pj5Gs2bNjC1bttg7rHynSZMmxquvvmrvMPK0Ll26GH5+foazs7Ph7+9vdOnSxTh9+rS9w8oXvvrqK6Ny5cqGi4uLERISYsybN8/eIeULmzdvNiQZsbGxD7Vf8h7bkffYjrwne8h7cgZ5T+bIe7KPvCd7civvMRmGYeRcWR4AAAAAAAAAgH8W1kgHAAAAAAAAAMAKCukAAAAAAAAAAFhBIR0AAAAAAAAAACsopAMAAAAAAAAAYAWFdAAAAAAAAAAArKCQDgAAAAAAAACAFRTSAQAAAAAAAACwgkI6AAAAAAAAAABWUEgHAACQ1KdPH3Xo0MHm4wICAjRz5swcj+ffxGQyac2aNTYf17hxY33++edZalu/fn198cUXNvcBAMA/EXmP/ZD3APkXhXQAAJAnNW3aVEOGDHlox2UmMjJShQsXTrP9u+++03//+98c7w/WrV27VhcvXlTXrl2z1H7s2LEaNWqUUlNTczkyAABsR94Da8h7gLyBQjoAAMAD8PHxkZubm73DyBGGYeju3btZanvnzp1cjsa62bNnq2/fvnJwyFo626pVK127dk0bN27M5cgAAPjnIu+xD/IeIG+gkA4AAPKcPn36KCoqSrNmzZLJZJLJZNKZM2ckSVFRUapbt65cXFzk5+enUaNGmT8EZXRcSkqK+vfvrzJlysjV1VXBwcGaNWtWluPZtWuX+vbtq8TERPN5w8PDJaX9E2eTyaSPPvpIbdu2lZubmypUqKB9+/bp9OnTatq0qQoVKqSGDRsqLi7Ooo8vv/xSNWvWVMGCBVW2bFlNmDDB6oe7e3+SPWHCBPn4+MjT01MDBgxQcnKyuU1qaqqmTJlivu5q1app5cqVFtdlMpm0ceNG1apVSy4uLvr666/T9HXmzBmZTCYtW7ZMTZo0UcGCBbV48WJdunRJ3bp1k7+/v9zc3FSlShUtWbLE4timTZvqlVde0YgRI+Tt7S1fX1/z2GUkLCxMfn5++uGHH9Ld//vvv2vHjh0KDQ01bzMMQ+Hh4SpVqpRcXFxUvHhxvfLKK+b9jo6Oat26tZYuXWq1bwAAHjbyHvIe8h4gnzAAAADymCtXrhgNGjQwXnjhBSMhIcFISEgw7t69a5w7d85wc3MzBg0aZJw4ccJYvXq1UbRoUSMsLMzqccnJycb48eON7777zvjpp5+MRYsWGW5ubsayZcvMffbu3dto3759uvHcvn3bmDlzpuHp6Wk+77Vr1wzDMIzSpUsbM2bMMLeVZPj7+xvLli0zYmNjjQ4dOhgBAQHGk08+aWzatMk4fvy4Ub9+faNly5bmY3bv3m14enoakZGRRlxcnLFlyxYjICDACA8Pz3CMevfubbi7uxtdunQxjh49aqxbt87w8fExxowZY27zxhtvGCEhIcamTZuMuLg4Y8GCBYaLi4uxa9cuwzAMY+fOnYYko2rVqsaWLVuM06dPG5cuXUrT188//2xIMgICAowvvvjC+Omnn4xff/3VOHfunDFt2jTj+++/N+Li4ozZs2cbjo6Oxrfffms+tkmTJoanp6cRHh5unDx50li4cKFhMpmMLVu2WIzZ6tWrjdTUVOOll14yAgICjFOnTmV47atWrTIKFSpkpKSkmLetWLHC8PT0NDZs2GD88ssvxrfffmvMmzfP4rg5c+YYpUuXzvC8AADYA3kPeQ95D5A/UEgHAAB5UpMmTYxXX33VYtuYMWOM4OBgIzU11bztgw8+MNzd3c0fLtI7Lj2DBw82nnnmGfNzax8oDcMwFixYYHh5eaXZnt4HyrFjx5qf79u3z5BkREREmLctWbLEKFiwoPl5s2bNjMmTJ1uc97PPPjP8/PwyjKd3796Gt7e3cf36dfO2OXPmmMfi1q1bhpubm7F3716L4/r3729069bNMIz/faBcs2ZNhv0Yxv8+UM6cOdNqO8MwjDZt2hivvfaa+XmTJk2Mxx57zKJNnTp1jJEjR5qfSzJWrFhhdO/e3ahQoYJx7tw5q33MmDHDKFu2rMW26dOnG+XLlzeSk5MzPO7LL780HBwcLD6IAgCQF5D3kPdkhLwHyDucHvYMeAAAgOw6ceKEGjRoIJPJZN7WqFEjJSUl6dy5cypVqlSGx37wwQeaP3++4uPjdfPmTSUnJ6t69eq5EmfVqlXN/3700UclSVWqVLHYduvWLV29elWenp46fPiwoqOj9eabb5rbpKSk6NatW7px40aGa5FWq1bNYl+DBg2UlJSks2fPKikpSTdu3NBTTz1lcUxycrJq1Khhsa127dpZuq6/t0tJSdHkyZO1fPlynT9/XsnJybp9+3aaeO8fD0ny8/PTb7/9ZrFt6NChcnFx0TfffKOiRYtajePmzZsqWLCgxbbOnTtr5syZKlu2rFq2bKnWrVsrNDRUTk7/S3ddXV2Vmpqq27dvy9XVNUvXDACAvZD3WCLv+R/yHsA+KKQDAIB/vKVLl2r48OGaPn26GjRoIA8PD02bNk3ffvttrvRXoEAB87/vffhNb1tqaqokKSkpSRMmTFCnTp3SnOvvH5yyKikpSZK0fv16+fv7W+xzcXGxeF6oUKEsnfPv7aZNm6ZZs2Zp5syZqlKligoVKqQhQ4ZYrFcqWV679Nf137v2e5566iktWbJEmzdvVo8ePazGUbRoUf35558W20qWLKnY2Fht27ZNW7du1aBBgzRt2jRFRUWZ+798+bIKFSrEh0kAwD8aeQ95j0TeA+QGCukAACBPcnZ2VkpKisW2ChUq6IsvvpBhGOYPZdHR0fLw8FCJEiUyPC46OloNGzbUoEGDzNv+ftOr7MSTU2rWrKnY2FgFBgbadNzhw4d18+ZN8wekb775Ru7u7ipZsqS8vb3l4uKi+Ph4NWnSJDfCVnR0tNq3b6+ePXtK+usD8smTJ1WxYkWbz9WuXTuFhoaqe/fucnR0VNeuXTNsW6NGDV24cEF//vmnHnnkEfN2V1dXhYaGKjQ0VIMHD1ZISIiOHDmimjVrSpKOHj2aZlYaAAB5AXlP5sh7yHsAe3OwdwAAAADpCQgI0LfffqszZ87ojz/+UGpqqgYNGqSzZ8/q5Zdf1o8//qgvv/xSYWFhGjZsmBwcHDI8LigoSAcOHNDmzZt18uRJjRs3Tt99953N8SQlJWn79u36448/dOPGjRy71vHjx+vTTz/VhAkTdOzYMZ04cUJLly7V2LFjrR6XnJys/v376/jx49qwYYPCwsL00ksvycHBQR4eHho+fLiGDh2qhQsXKi4uTocOHdJ7772nhQsX5kjcQUFB2rp1q/bu3asTJ07oxRdf1MWLF7N9vo4dO+qzzz5T3759tXLlygzb1ahRQ0WLFlV0dLR5W2RkpCIiInT06FH99NNPWrRokVxdXVW6dGlzmz179ujpp5/OdnwAAOQW8h7ynoyQ9wB5B4V0AACQJw0fPlyOjo6qWLGifHx8FB8fL39/f23YsEH79+9XtWrVNGDAAPXv39/ig1d6x7344ovq1KmTunTponr16unSpUsWs7SyomHDhhowYIC6dOkiHx8fvf322zl2rS1atNC6deu0ZcsW1alTR/Xr19eMGTMsPgylp1mzZgoKClLjxo3VpUsXtWvXTuHh4eb9kyZN0rhx4zRlyhRVqFBBLVu21Pr161WmTJkciXvs2LGqWbOmWrRooaZNm8rX11cdOnR4oHM+++yzWrhwoXr16qVVq1al28bR0VF9+/bV4sWLzdsKFy6sjz/+WI0aNVLVqlW1bds2ffXVVypSpIgk6fz589q7d6/69u37QPEBAJAbyHvIe8h7gLzPZBiGYe8gAAAAYJs+ffroypUrWrNmjb1DsYsLFy6oUqVKOnToUKYfvCVp5MiR+vPPPzVv3ryHEB0AAMhJ5D3kPUBewIx0AAAA5Du+vr6KiIhQfHx8ltoXK1ZMkyZNyuWoAAAAch55D5A3MCMdAAAgH/q3z8wCAAD/HuQ9APICCukAAAAAAAAAAFjB0i4AAAAAAAAAAFhBIR0AAAAAAAAAACsopAMAAAAAAAAAYAWFdAAAAAAAAAAArKCQDgAAAAAAAACAFRTSAQAAAAAAAACwgkI6AAAAAAAAAABWUEgHAAAAAAAAAMCK/wfcPSh4MHi8pgAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Across ranks: top kernels by total time, baseline and exp in separate panels sharing\n", + "# the same x and y axes (same kernel set/order, same scale) so they compare directly.\n", + "# Bar = median across the 8 ranks, whiskers = min-max. Dumb - group kernel slices by\n", + "# name, no buckets, real names (clipped). Zero bar = kernel absent in that arm.\n", + "import matplotlib.pyplot as plt, numpy as np\n", + "\n", + "NAME_LIMIT = 40\n", + "def clip(name):\n", + " return name if len(name) <= NAME_LIMIT else name[:NAME_LIMIT] + \"...\"\n", + "\n", + "k = df[(df[\"preprocessor\"] == \"parse_trace\") & (df[\"grain\"] == \"track_slice\") &\n", + " (df[\"unit\"] == \"us\") & (df[\"cat\"] == \"kernel\")]\n", + "# total seconds per (arm, rank, kernel)\n", + "per = (k.groupby([\"container\", \"rank\", \"name\"])[\"num\"].sum() / 1e6).reset_index()\n", + "\n", + "TOPN = 12\n", + "top_names = per.groupby(\"name\")[\"num\"].sum().sort_values(ascending=False).head(TOPN).index.tolist()\n", + "\n", + "def stats(name, arm):\n", + " v = per[(per[\"name\"] == name) & (per[\"container\"] == arm)][\"num\"]\n", + " return (v.median(), v.min(), v.max()) if len(v) else (0.0, 0.0, 0.0)\n", + "\n", + "arms = [\"baseline\", \"exp\"]\n", + "colors = {\"baseline\": \"#2c7fb8\", \"exp\": \"#d95f0e\"}\n", + "y = np.arange(len(top_names))\n", + "fig, axes = plt.subplots(1, 2, figsize=(15, 0.55 * len(top_names) + 1.5), sharex=True, sharey=True)\n", + "for ax, arm in zip(axes, arms):\n", + " med, lo, hi = [], [], []\n", + " for nm in top_names:\n", + " m, mn, mx = stats(nm, arm)\n", + " med.append(m); lo.append(m - mn); hi.append(mx - m)\n", + " ax.barh(y, med, color=colors[arm], xerr=[lo, hi],\n", + " error_kw=dict(ecolor=\"black\", lw=0.8, capsize=2))\n", + " ax.set_title(arm)\n", + " ax.set_xlabel(\"total time per rank (s)\")\n", + "axes[0].set_yticks(y)\n", + "axes[0].set_yticklabels([clip(n) for n in top_names])\n", + "axes[0].invert_yaxis() # biggest on top (shared, so both panels follow)\n", + "fig.suptitle(\"Top kernels across ranks (median rank, min-max bars): baseline vs exp\")\n", + "plt.tight_layout()\n", + "plt.show()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c0f0e4a6", + "metadata": { + "execution": { + "iopub.execute_input": "2026-07-01T14:33:54.148358Z", + "iopub.status.busy": "2026-07-01T14:33:54.148071Z", + "iopub.status.idle": "2026-07-01T14:33:54.418685Z", + "shell.execute_reply": "2026-07-01T14:33:54.417744Z" + } + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABdEAAAMeCAYAAADyO01RAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjgsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvwVt1zgAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzs3XdcleX/x/H3AWQjOFBwgYIDce80xRnONE1LzVCzLFeWZpqVaJnm1lwNFXNVamqOnDlJc+KepGmFk0RxC/fvD3+cr0c4cFAUx+v5eJzHg3OP6/rc1z3Ozedc57pNhmEYAgAAAAAAAAAAydhldgAAAAAAAAAAADyuSKIDAAAAAAAAAGAFSXQAAAAAAAAAAKwgiQ4AAAAAAAAAgBUk0QEAAAAAAAAAsIIkOgAAAAAAAAAAVpBEBwAAAAAAAADACpLoAAAAAAAAAABYQRIdAAAAAAAAAAArSKIDADLE7du31adPH+XPn192dnZq1qyZJMlkMik8PNy8XEREhEwmk06cOJEpcabHunXrZDKZNG/evDSXbd++vfz9/R9+UI9Ierb9cfMkHWNpOXHihEwmkyIiIjI7lHS597x/WqXnvE9MTFSJEiU0ePDghxtUOj3J1+gHER4eLpPJpPPnz2d2KGY1a9ZUzZo1MzuMRy7pmNu+fXtmhyJJunDhgtzc3LRs2bIHKqd9+/Zyd3fPoKgynr+/v9q3b29+n/S5v27dukyLCQCAxxlJdAB4iiX9Y5r0cnZ2VpEiRdStWzedOXMmQ+uaOnWqhg8frpdfflnTp0/Xe++9l6Hl34+JEyc+ccnHJMuWLXsmkpDAs2LOnDk6deqUunXrltmhAEhFjhw51KlTJ33yySeZHQoAAHiMOGR2AACAh2/QoEEqWLCgrl+/rk2bNmnSpElatmyZ9u3bJ1dX1wyp47ffflPevHk1evRoi+nXrl2Tg0PmfNxMnDhROXPmtOhp9aRYtmyZJkyYQCL9Gefn56dr164pS5YsmR0KHtDw4cP16quvytPTM7NDSVW7du306quvysnJKbNDeeasXLkys0PA/3v77bc1btw4/fbbb6pdu3Zmh/NI1KhRQ9euXZOjo2NmhwIAwGOJnugA8Axo0KCBXnvtNXXq1EkRERHq2bOnjh8/rkWLFlld58qVK+mq4+zZs/Ly8ko23dnZ+aEm0dMbJx4PhmHo2rVrmR1GhnlYx2HSL0js7e0fSvmZ6Vk6d3ft2qXdu3erVatWmR1Kmuzt7eXs7CyTyZTZoSgxMVHXr1/P7DAeGUdHRxKYD9HVq1dtXjYoKEglSpR4Yn/Ndj/s7Ozk7OwsOztSBAAApIRPSAB4BiX1qjp+/Lik/43bGR0drYYNG8rDw0Nt27aVdCfR1atXL+XPn19OTk4qWrSoRowYIcMwJP1vzOa1a9dq//795qFjksbUtHVs5F9//VXVq1eXm5ubPDw81KhRI+3fv99imdTivJe/v7/279+v9evXm2NKGms2NjZWvXv3VsmSJeXu7q6sWbOqQYMG2r17d4plJSQk6KOPPpKPj4/c3Nz04osv6tSpU2luU2JiosaMGaPg4GA5Ozsrd+7c6ty5s/77779U12vfvr0mTJggSRbD8SRJa58kMZlM6tatm2bNmqWiRYvK2dlZ5cuX14YNG9KMPSU3btxQ48aN5enpqd9//z1d2+jv76/GjRtrxYoVqlChglxcXPT111+bx2D96aefNHjwYOXLl0/Ozs6qU6eOjh07liyGP/74Q/Xr15enp6dcXV0VEhKiyMjINGPfvn27QkNDlTNnTrm4uKhgwYLq2LHjfbVD0ljKBw4cUJs2bZQtWzY9//zz5vkzZ85U+fLl5eLiouzZs+vVV19N8XiZMGGCChUqJBcXF1WqVEkbN25MNiaytTHRf/vtN/P54uXlpaZNm+rgwYMpxnns2DG1b99eXl5e8vT0VIcOHZIlk1atWqXnn39eXl5ecnd3V9GiRfXRRx+l2RY3btzQe++9J29vb3l4eOjFF1/U33//na42u337tj777DMFBATIyclJ/v7++uijj3Tjxg2LMpKOoZUrV6pMmTJydnZW8eLF9fPPP1sslzSM1YYNG9S5c2flyJFDWbNm1euvv57iuWfLtUeSFi5cqBIlSsjZ2VklSpTQggUL0myfu9d1dHRUjRo1UmyXI0eO6LXXXpOnp6e8vb31ySefyDAMnTp1Sk2bNlXWrFnl4+OjkSNHJiv7xo0bGjBggAIDA+Xk5KT8+fOrT58+ydrP1n2V0pjoixYtUqNGjZQnTx45OTkpICBAn332mRISEizWrVmzpkqUKKEDBw6oVq1acnV1Vd68eTVs2DCb2unua1ZwcLCcnJy0fPlySdKIESNUtWpV5ciRQy4uLipfvnyKz2xIKiNpfzk5OSk4ONhcTmr++usvBQYGqkSJEuke8izpXB0xYoT53HZ1ddULL7ygU6dOyTAMffbZZ8qXL59cXFzUtGlTxcbGWpRx7/mf3utjSpLOm3Xr1pmvvSVLljR/Rv/8888qWbKk+fNh165dFuvv2bNH7du3V6FCheTs7CwfHx917NhRFy5cMC9z7do1FStWTMWKFbP4cjQ2Nla+vr6qWrVqsmMlJVevXk3znE3vsbhjxw7VqFFDrq6u5muarZ8H9erV0+LFiy0+W2/duqVDhw4pJiYmze1J8ueffyo0NFRubm7KkyePBg0alOzz2tbj25Zrta3XhHulNCZ6es7p+623W7ducnd3T/FLjtatW8vHx8e8fx/kszyta/1vv/0mOzs7ffrppxbrzZ49WyaTSZMmTTJPy+j7KwDAE8IAADy1pk2bZkgytm3bZjF97NixhiRj8uTJhmEYRlhYmOHk5GQEBAQYYWFhxuTJk43vv//eSExMNGrXrm2YTCajU6dOxvjx440mTZoYkoyePXsahmEY8fHxxowZM4xixYoZ+fLlM2bMmGHMmDHDOH36tGEYhiHJGDBgQLKYjh8/bp72/fffGyaTyahfv77x1VdfGV9++aXh7+9veHl5WSxnLc6ULFiwwMiXL59RrFgxc0wrV640DMMwtm3bZgQEBBh9+/Y1vv76a2PQoEFG3rx5DU9PT+Off/4xl7F27VpDklGyZEmjVKlSxqhRo4y+ffsazs7ORpEiRYyrV69axObn52cRQ6dOnQwHBwfjzTffNCZPnmx8+OGHhpubm1GxYkXj5s2bVvfb77//btSrV8+QZI59xowZhmEYNu2TJJKMEiVKGDlz5jQGDRpkfPnll4afn5/h4uJi7N2712r9d2/73LlzDcMwjKtXrxr16tUzsmXLZmzdujXd2+jn52cEBgYa2bJlM/r27WtMnjzZWLt2rbmesmXLGuXLlzdGjx5thIeHG66urkalSpUsYlqzZo3h6OhoPPfcc8bIkSON0aNHG6VKlTIcHR2NP/74w7zcvcfYmTNnjGzZshlFihQxhg8fbnz77bdG//79jaCgoFTbwJoBAwYYkozixYsbTZs2NSZOnGhMmDDBMAzD+Pzzzw2TyWS88sorxsSJE42BAwcaOXPmNPz9/Y3//vvPXMbEiRMNSUb16tWNcePGGe+//76RPXt2IyAgwAgJCTEvd/z4cUOSMW3aNPO0VatWGQ4ODkaRIkWMYcOGmevIli2bxfmSFGfZsmWN5s2bGxMnTjQ6depkSDL69OljXm7fvn2Go6OjUaFCBWPs2LHG5MmTjd69exs1atRIsy1ee+01Q5LRpk0bY/z48Ubz5s2NUqVKJTvvU2uzsLAwQ5Lx8ssvGxMmTDBef/11Q5LRrFkzi7r8/PyMIkWKGF5eXkbfvn2NUaNGGSVLljTs7OzM57Zh/G//lyxZ0ty+Xbt2Nezs7IwaNWoYiYmJ5mVtvfasWLHCsLOzM0qUKGGMGjXK6N+/v+Hp6WkEBwcnO+9TUrduXaNcuXLJpie1S5kyZYzWrVsbEydONBo1amRIMkaNGmUULVrUeOedd4yJEyca1apVMyQZ69evN6+fkJBgvPDCC4arq6vRs2dP4+uvvza6detmODg4GE2bNr2vfZXSNbpZs2ZGq1atjOHDhxuTJk0yWrZsaUgyevfubVFHSEiIkSdPHiN//vzGu+++a0ycONGoXbu2IclYtmxZmu0kyQgKCjK8vb2NgQMHGhMmTDB27dplGIZh5MuXz+jSpYsxfvx4Y9SoUUalSpUMScaSJUuSlVG6dGnD19fX+Oyzz4wxY8YYhQoVMlxdXY3z588na/tz584ZhmEYx44dMwoUKGCUKVPGPC09ks7VMmXKGMWLFzdGjRplfPzxx4ajo6NRpUoV46OPPjKqVq1qjBs3zujRo4dhMpmMDh06JGu/u8//9FwfrfHz8zOKFi1q+Pr6GuHh4cbo0aONvHnzGu7u7sbMmTONAgUKGEOHDjWGDh1qeHp6GoGBgUZCQoJ5/REjRhjVq1c3Bg0aZHzzzTfGu+++a7i4uBiVKlWyOJe2bNli2NvbG++995552quvvmq4uLgYhw8fTjXG9Jyz6TkWfXx8DG9vb6N79+7G119/bSxcuDBdnwczZ840JFl8Xibt57CwsDTbPiwszHB2djYKFy5stGvXzhg/frzRuHFjQ5LxySefWCxry/Fty7U6PdcEPz8/i+1IOt7Wrl1r0Y62nNPpqfdeGzZsMCQZP/30k8X0K1euGG5ubkbXrl0Nw3iwz3Jbr/Vdu3Y1HBwcjB07dhiGYRj//vuvkT17dqNu3boWx+GD3F8BAJ5cJNEB4CmW9I/p6tWrjXPnzhmnTp0yfvjhByNHjhyGi4uL8ffffxuG8b8kVt++fS3WX7hwoSHJ+Pzzzy2mv/zyy4bJZDKOHTtmnhYSEmIEBwcniyGtBM3ly5cNLy8v480337RY7/Tp04anp6fFdGtxWhMcHGyRkEhy/fp1iySBYdz5x9jJyckYNGiQeVrSP5R58+Y1Ll26ZJ7+008/GZKMsWPHWsR2dzJt48aNhiRj1qxZFvUsX748xen36tq1q5HSd93p2SeSDEnG9u3bzdP++usvw9nZ2XjppZdSrf/uJPrly5eNkJAQI2fOnOaEVnq30c/Pz5BkLF++PMV6goKCjBs3bpinJ33Rk/TPaGJiolG4cGEjNDTU4h/Zq1evGgULFjTq1atnnnbvMbZgwYIUv0y6X0nJt9atW1tMP3HihGFvb28MHjzYYvrevXsNBwcH8/QbN24YOXLkMCpWrGjcunXLvFxERIQhKc0kepkyZYxcuXIZFy5cME/bvXu3YWdnZ7z++uvJ4uzYsaNFPC+99JKRI0cO8/vRo0dbJBNtFRUVZUgyunTpYjG9TZs2VpPo97ZZUhmdOnWymN67d29DkvHbb7+ZpyUdQ/PnzzdPi4uLM3x9fY2yZcuapyXt//Lly1t8kTNs2DBDkrFo0SLDMNJ37SlTpozh6+trXLx40Txt5cqVhiSbkuj58uUzWrRokWx6Uru89dZb5mm3b9828uXLZ5hMJmPo0KHm6f/995/h4uJikfSaMWOGYWdnZ2zcuNGi3MmTJxuSjMjISMMw0revUkqi3/2FYZLOnTsbrq6uxvXr183TQkJCDEkWX27euHHD8PHxSXH77yXJsLOzM/bv359s3r0x3Lx50yhRooRRu3btZGU4OjpaXAt3795tSDK++uor87S7k+gHDx408uTJY1SsWNGIjY1NM86UJJ2r3t7eFsdJv379zIn9u8/31q1bG46OjsnaL6UkelrXx9QknTe///67edqKFSsMSYaLi4vx119/mad//fXXyZKoKe37OXPmGJKMDRs2WEzv16+fYWdnZ2zYsMGYO3euIckYM2ZMmjHaes5aiye1YzGps0CS9Hwe/P7774Yk48cffzRPS28SXZLRvXt387TExESjUaNGhqOjo8U115bj25Zrta3XBMOwPYluyzmdnnrvlZiYaOTNmzfZNSLpXivpOLvfz/L0XOuvXLliBAYGGsHBwcb169eNRo0aGVmzZrU4Twzjwe6vAABPLoZzAYBnQN26deXt7a38+fPr1Vdflbu7uxYsWKC8efNaLPfOO+9YvF+2bJns7e3Vo0cPi+m9evWSYRj69ddfHzi2VatW6eLFi2rdurXOnz9vftnb26ty5cpau3ZtsnXujTO9nJyczGN+JiQk6MKFC+afRe/cuTPZ8q+//ro8PDzM719++WX5+vpq2bJlVuuYO3euPD09Va9ePYvtKl++vNzd3VPcLlukd58899xzKl++vPl9gQIF1LRpU61YscKmn9fHxcXphRde0KFDh7Ru3TqVKVPmvrexYMGCCg0NTbGeDh06WIwFXL16dUl3fgYvSVFRUTp69KjatGmjCxcumOu6cuWK6tSpow0bNigxMTHFspPG6l+yZIlu3bqV5jbb6u2337Z4//PPPysxMVGtWrWyaA8fHx8VLlzY3B7bt2/XhQsX9Oabb1o8L6Bt27bKli1bqnXGxMQoKipK7du3V/bs2c3TS5UqpXr16qV4TN4bZ/Xq1XXhwgVdunRJ0v/aZ9GiRVbbMCVJdd17LPbs2dPqOvfGklTG+++/bzG9V69ekqSlS5daTM+TJ49eeukl8/ukIR927dql06dPWyz71ltvWTyQ9Z133pGDg4O5TluvPUltHhYWZvFQ0Hr16ql48eJWt/VuFy5cSHXfdurUyfy3vb29KlSoIMMw9MYbb5ine3l5qWjRouZzQrpzDgYFBalYsWIW25A0ZFfSNtzPvrqbi4uL+e/Lly/r/Pnzql69uq5evapDhw5ZLOvu7q7XXnvN/N7R0VGVKlWyiDs1ISEhKbbr3TH8999/iouLU/Xq1VO8ZtetW1cBAQHm96VKlVLWrFlTjGHfvn0KCQmRv7+/Vq9eneY5mJaWLVtaHCeVK1eWJL322msW53vlypV18+ZN/fPPP2mWmdb1MS3FixfXc889lyym2rVrq0CBAsmm313u3e1+/fp1nT9/XlWqVJGkZG0fHh6u4OBghYWFqUuXLgoJCUl2zKUmrXP23njSOhadnJzUoUMHi2np+TxIOhbOnz9vnubv7y/DMNI1Vnq3bt3MfycNA3Lz5k2tXr06xe2ydnzbcq229ZqQHrac0w9Sr8lkUsuWLbVs2TLFx8ebp//444/Kmzeveeiv+/0sT899pqurqyIiInTw4EHVqFFDS5cu1ejRoy3OkyQPen8FAHjyPLwnvQEAHhsTJkxQkSJF5ODgoNy5c6to0aLJHhzl4OCgfPnyWUz766+/lCdPHosEsnTngVtJ8x/U0aNHJf1vnPZ7Zc2aNdU44+PjLf7psre3l7e3d6p1JiYmauzYsZo4caKOHz9u8c9Ojhw5ki1fuHBhi/cmk0mBgYEWYwbf6+jRo4qLi1OuXLlSnH/27NlUY7Qmvfvk3tglqUiRIrp69arOnTsnHx+fVOvr2bOnrl+/rl27dik4ONhiXnq3sWDBglbrufcf1KTkRdJ4uEnHSVhYmNUy4uLiUkyAhYSEqEWLFho4cKBGjx6tmjVrqlmzZmrTpo2cnJyslpeWe7fn6NGjMgwjxTaXZE4OJe2jwMBAi/kODg7y9/dPtc6kdYsWLZpsXlBQkFasWKErV67Izc3NPD21ts2aNateeeUVfffdd+rUqZP69u2rOnXqqHnz5nr55ZdTfcDcX3/9JTs7O4tkpbXYktzbZkll3NsWPj4+8vLySnY8BwYGJnvgZZEiRSTdGZP67uP53v3g7u4uX19f83lr67UnKYaU9qu1L95SYtwzBvLd7t1Hnp6ecnZ2Vs6cOZNNv3ss6qNHj+rgwYNWr3lJ5+D97Ku77d+/Xx9//LF+++0385cvSeLi4ize58uXL9k+ypYtm/bs2WNTXdauE0uWLNHnn3+uqKgoizGWU3oAakoJr2zZsqU4Jn6TJk2UO3durVixQu7u7jbFmJqU9qUk5c+fP8XpaT0jI6Uy770+pvU5+CAxxcbGauDAgfrhhx+SXdPv3feOjo6aOnWqKlasKGdnZ02bNi1dD6hN65yV0ncs5s2bN9mDWtPzeZB0zj7IQ3bt7OxUqFAhi2l3X7OS2HJ823KttvWakB62nNMPWu8rr7yiMWPG6JdfflGbNm0UHx+vZcuWqXPnzua67/ezPL33mdWqVdM777yjCRMmKDQ01OqY6w96fwUAePKQRAeAZ0ClSpVUoUKFVJe5u3f2o5TUm2rGjBkp/sNxd889KXmcI0aM0MCBA83v/fz8Uk1uS9IXX3yhTz75RB07dtRnn32m7Nmzy87OTj179kxXT9zUJCYmKleuXJo1a1aK89NK9D8umjZtqh9++EFDhw7V999/b9H26d3Gu3va3cve3j7F6UlJjKT9Mnz4cIve8HezlgAzmUyaN2+etmzZosWLF2vFihXq2LGjRo4cqS1bttx34uze7UlMTJTJZNKvv/6a4vZkRILufqTVti4uLtqwYYPWrl2rpUuXavny5frxxx9Vu3ZtrVy50ur698PaMfAgSar7ld5rz4PIkSNHqsnSlNo4rf0m3dmGkiVLatSoUSkue2+S9H5cvHhRISEhypo1qwYNGqSAgAA5Oztr586d+vDDD5NdM22JOzUpHSMbN27Uiy++qBo1amjixIny9fVVlixZNG3aNM2ePTvZ8umJoUWLFpo+fbpmzZqlzp072xRjaqzV/SDtkta6aX0OPkhMrVq10u+//64PPvhAZcqUkbu7uxITE1W/fv0UPy9XrFgh6U6v9aNHj6b65Wl6pfdYTOlYSs/nQdI5e++XWRnN1uPblmv1w7gmPIprUZUqVeTv76+ffvpJbdq00eLFi3Xt2jW98sor5mXu97M8vdf6GzdumB+uGh0dratXr8rV1TXV+AEAzwaS6AAAq/z8/LR69WpdvnzZoudz0k+m/fz8HriOpJ6RuXLlUt26ddO9/uuvv27+qa9k+U+ztcTcvHnzVKtWLU2ZMsVi+sWLF1P8ZzmpF1MSwzB07NgxlSpVympcAQEBWr16tapVq5Zq8tgaa7Gnd5/cG7skHTlyRK6urjYl8ps1a6YXXnhB7du3l4eHhyZNmmSe96DbmB5Jx0nWrFnv6ziR7vyTXqVKFQ0ePFizZ89W27Zt9cMPP1gMpfGgMRqGoYIFC5p7GqYkaR8dO3ZMtWrVMk+/ffu2Tpw4kepxlbTu4cOHk807dOiQcubMadEL3VZ2dnaqU6eO6tSpo1GjRumLL75Q//79tXbtWqvt7efnp8TEREVHR1v0aE4pNmuSyjh69Kj51xSSdObMGV28eDHZ8Xzs2DEZhmFxfhw5ckSSkvXiP3r0qEX7xsfHKyYmRg0bNpRk+7UnKYaUziVbt7VYsWI6fvy4TcumR0BAgHbv3q06deqk+kXEg+yrdevW6cKFC/r5559Vo0YN8/SHsT3WzJ8/X87OzlqxYoVFj9Np06Y9cNnDhw+Xg4ODunTpIg8PD7Vp0+aBy3zUUvscfBD//fef1qxZo4EDB+rTTz81T0/pXJCkPXv2aNCgQerQoYOioqLUqVMn7d2712J4m9Skdc5m5LFoy+dBUrl3X5vSKzExUX/++afFZ8K916z0HN9pXattvSZktIyot1WrVho7dqwuXbqkH3/8Uf7+/uahg+6W3s/y9N5nDhgwQAcPHtSIESP04Ycfqm/fvho3blyy5R70/goA8ORhTHQAgFUNGzZUQkKCxo8fbzF99OjRMplMatCgwQPXERoaqqxZs+qLL75IcYzLc+fOpbp+oUKFVLduXfOrWrVq5nlubm66ePFisnXs7e2T9f6bO3eu1bFpv//+e12+fNn8ft68eYqJiUl1+1u1aqWEhAR99tlnyebdvn07xbjulpQIvXe59O6TzZs3Www3cerUKS1atEgvvPCCzT2MX3/9dY0bN06TJ0/Whx9+aJ7+oNuYHuXLl1dAQIBGjBhhMWxBktSOk//++y/Z/k7qzX73z+YfVPPmzWVvb6+BAwcmq88wDPMwHBUqVFCOHDn07bff6vbt2+ZlZs2alebQDr6+vipTpoymT59u0b779u3TypUrzcmm9IiNjU02zZb2STrW7k0ujBkzxua6k+K9d52k3oyNGjWymP7vv/9qwYIF5veXLl3S999/rzJlyiTrYfjNN99YXFMmTZqk27dvm+O29dpzd5vfPVzEqlWrdODAAZu287nnntO+ffsy9HiT7pyD//zzj7799ttk865du6YrV65IerB9lXSduPuYvnnzpiZOnHi/Yaebvb29TCaTxdBbJ06c0MKFCx+4bJPJpG+++UYvv/yywsLC9MsvvzxwmY9aap+DDyKlfS+lfNzcunVL7du3V548eTR27FhFRETozJkzeu+992yuL61zNiOOxfR8HuzYsUOenp4WQ5ndunVLhw4dUkxMjM113v15bRiGxo8fryxZsqhOnTqSbD++bblW23pNyGgZUe8rr7yiGzduaPr06Vq+fLlatWplMf9+P8vTc5/5xx9/aMSIEerZs6d69eqlDz74QOPHj9f69euTrZcR91cAgCcLPdEBAFY1adJEtWrVUv/+/XXixAmVLl1aK1eu1KJFi9SzZ89k4+vej6xZs2rSpElq166dypUrp1dffVXe3t46efKkli5dqmrVqiVLGNuqfPnymjRpkj7//HMFBgYqV65cql27tho3bmzuLVe1alXt3btXs2bNSjZuaZLs2bPr+eefV4cOHXTmzBmNGTNGgYGBevPNN63WHRISos6dO2vIkCGKiorSCy+8oCxZsujo0aOaO3euxo4dq5dffjnV2KU7DwIMDQ2Vvb29Xn311XTvkxIlSig0NFQ9evSQk5OTOdlw90//bdGtWzddunRJ/fv3l6enpz766KMH3sb0sLOz03fffacGDRooODhYHTp0UN68efXPP/9o7dq1ypo1qxYvXpziutOnT9fEiRP10ksvKSAgQJcvX9a3336rrFmzWiSd27dvr+nTp+v48eNpjk2ekoCAAH3++efq16+fTpw4oWbNmsnDw0PHjx/XggUL9NZbb6l3795ydHRUeHi4unfvrtq1a6tVq1Y6ceKEIiIiFBAQkGYvvuHDh6tBgwZ67rnn9MYbb+jatWv66quv5OnpqfDw8HTHPWjQIG3YsEGNGjWSn5+fzp49q4kTJypfvnwWvVvvVaZMGbVu3VoTJ05UXFycqlatqjVr1ujYsWM21126dGmFhYXpm2++MQ/VsHXrVk2fPl3NmjWz6JUq3Rlv9o033tC2bduUO3duTZ06VWfOnEmxx+bNmzdVp04dtWrVSocPH9bEiRP1/PPP68UXX5SUvmvPkCFD1KhRIz3//PPq2LGjYmNj9dVXXyk4ODjFL3Xu1bRpU3322Wdav369XnjhBZvbJy3t2rXTTz/9pLfffltr165VtWrVlJCQoEOHDumnn37SihUrVKFChQfaV1WrVlW2bNkUFhamHj16yGQyacaMGTYPz5IRGjVqpFGjRql+/fpq06aNzp49qwkTJigwMNDmsdZTY2dnp5kzZ6pZs2Zq1aqVli1bZh4/ed26dapVq5YGDBhwX+fXkyxr1qyqUaOGhg0bplu3bilv3rxauXJlij2/k8bzXrNmjTw8PFSqVCl9+umn+vjjj/Xyyy/b9AVfWudsRhyLtn4eSHe+KGvSpInFNfmff/5RUFCQwsLCbHq4qLOzs5YvX66wsDBVrlxZv/76q5YuXaqPPvrI3FvZ1uPblmu1rdeEjJYR9ZYrV06BgYHq37+/bty4YTGUi5S+fXc3W6/1169fV1hYmAoXLqzBgwdLunOvtHjxYnXo0EF79+61+KVXRt1fAQCeIAYA4Kk1bdo0Q5Kxbdu2VJcLCwsz3NzcUpx3+fJl47333jPy5MljZMmSxShcuLAxfPhwIzEx0WK5kJAQIzg4ONn6kowBAwYki+n48eMWy61du9YIDQ01PD09DWdnZyMgIMBo3769sX37dpviTMnp06eNRo0aGR4eHoYkIyQkxDAMw7h+/brRq1cvw9fX13BxcTGqVatmbN682QgJCTEvkxSTJGPOnDlGv379jFy5chkuLi5Go0aNjL/++suirrCwMMPPzy9ZDN98841Rvnx5w8XFxfDw8DBKlixp9OnTx/j3339Tjf327dtG9+7dDW9vb8NkMhl3f2Tbuk8kGV27djVmzpxpFC5c2HBycjLKli1rrF27Ns22S9r2uXPnWkzv06ePIckYP358urbRz8/PaNSokc31HD9+3JBkTJs2zWL6rl27jObNmxs5cuQwnJycDD8/P6NVq1bGmjVrzMvce4zt3LnTaN26tVGgQAHDycnJyJUrl9G4cWOLY8swDKNFixaGi4uL8d9//6XaNgMGDDAkGefOnUtx/vz5843nn3/ecHNzM9zc3IxixYoZXbt2NQ4fPmyx3Lhx4ww/Pz/DycnJqFSpkhEZGWmUL1/eqF+/fprtsHr1aqNatWqGi4uLkTVrVqNJkybGgQMHbIrz3vZZs2aN0bRpUyNPnjyGo6OjkSdPHqN169bGkSNHUm0HwzCMa9euGT169DBy5MhhuLm5GU2aNDFOnTqV7LxPrc1u3bplDBw40ChYsKCRJUsWI3/+/Ea/fv2M69evWyyXdAytWLHCKFWqlOHk5GQUK1Ys2bGTtH3r16833nrrLSNbtmyGu7u70bZtW+PChQvJ6rfl2mMYd/ZrUFCQ4eTkZBQvXtz4+eefrZ73KSlVqpTxxhtvWEyz1i7WrnUpXWdv3rxpfPnll0ZwcLDh5ORkZMuWzShfvrwxcOBAIy4uzrycrfsqpWt0ZGSkUaVKFcPFxcXIkyeP0adPH2PFihWGJIvribXPAVvbKemalZIpU6aYr2PFihUzpk2bZm4/W8rw8/MzwsLCzO9TavurV68aISEhhru7u7FlyxbDMAxj8eLFhiRj8uTJqcaedK4OHz7cYrq1a1xKn8/WPoNsvT6mxNq1N6V2Smkb/v77b+Oll14yvLy8DE9PT6Nly5bGv//+a3Hc7Nixw3BwcDC6d+9uUd7t27eNihUrGnny5En1upqec/ZBj0VbPw8OHjxoSDJWr16dYhvdfSxZk3QeR0dHGy+88ILh6upq5M6d2xgwYICRkJBgsawtx7et12pbrwn3nhNJx9v9ntO21pua/v37G5KMwMDAZPNs3XfWpHWtf++99wx7e3vjjz/+sFhv+/bthoODg/HOO++Ypz3I/RUA4MllMoxH2I0EAAA8MiaTSV27dr3vnvzPmty5c+v111/X8OHDM6X+xMREeXt7q3nz5in+JP5Z5+/vrxIlSmjJkiWpLhcREaEOHTpo27ZtD6XH5f2aMWOGunbtqpMnT8rLyyuzw4GN+vTpozlz5ujYsWMW41Xj6dazZ09t2LBBO3bsyJQHH+Pxxv0VADybGBMdAAA88/bv369r165ZjPn+MF2/fj3ZEATff/+9YmNjVbNmzUcSAx6ttm3bqkCBApowYUJmh4J0WLt2rT755BMS6M+QCxcu6LvvvtPnn39OAh0AAJgxJjoAAHjmBQcH69KlS4+svi1btui9995Ty5YtlSNHDu3cuVNTpkxRiRIl1LJly0cWBx4dOzs77du3L7PDQDpt27Yts0PAI5YjRw6bnnUAAACeLSTRAQAAHjF/f3/lz59f48aNU2xsrLJnz67XX39dQ4cOlaOjY2aHBwAAAAC4C2OiAwAAAAAAAABgBWOiAwAAAAAAAABgBUl0AAAAAAAAAACsIIkOAAAAAAAAAIAVJNEBAAAAAAAAALCCJDoAAAAAAAAAAFaQRAcAAAAAAAAAwAqS6AAAAAAAAAAAWEESHQAAAAAAAAAAK0iiAwAAAAAAAABgBUl0AAAAAAAAAACsIIkOAAAAAAAAAIAVJNEBAAAAAAAAALCCJDoAAAAAAAAAAFaQRAcAAHgA4eHhMplMOn/+fGaHkkzNmjVVs2ZN8/sTJ07IZDIpIiIi02ICAAAAgCcNSXQAAAAAAAAAAKxwyOwAAAAA8Gj4+fnp2rVrypIlS2aHAgAAAABPDJLoAAAAzwiTySRnZ+fMDgMAAAAAnigM5wIAAJABzp8/r1atWilr1qzKkSOH3n33XV2/ft08f9q0aapdu7Zy5colJycnFS9eXJMmTUpWzvbt2xUaGqqcOXPKxcVFBQsWVMeOHS2WSUxM1JgxYxQcHCxnZ2flzp1bnTt31n///ZdqjCmNid6+fXu5u7vrn3/+UbNmzeTu7i5vb2/17t1bCQkJGVIvAACANf/88486duyo3Llzy8nJScHBwZo6daok6dq1aypWrJiKFSuma9eumdeJjY2Vr6+vqlatar5fSbqn+fPPPxUaGio3NzflyZNHgwYNkmEYmbJtAJ4e9EQHAADIAK1atZK/v7+GDBmiLVu2aNy4cfrvv//0/fffS5ImTZqk4OBgvfjii3JwcNDixYvVpUsXJSYmqmvXrpKks2fP6oUXXpC3t7f69u0rLy8vnThxQj///LNFXZ07d1ZERIQ6dOigHj166Pjx4xo/frx27dqlyMjIdA/XkpCQoNDQUFWuXFkjRozQ6tWrNXLkSAUEBOidd955aPUCAIBn25kzZ1SlShWZTCZ169ZN3t7e+vXXX/XGG2/o0qVL6tmzp6ZPn65q1aqpf//+GjVqlCSpa9euiouLU0REhOzt7c3lJSQkqH79+qpSpYqGDRum5cuXa8CAAbp9+7YGDRqUWZsJ4GlgAAAA4L4NGDDAkGS8+OKLFtO7dOliSDJ2795tGIZhXL16Ndm6oaGhRqFChczvFyxYYEgytm3bZrW+jRs3GpKMWbNmWUxfvnx5sukhISFGSEiI+f3x48cNSca0adPM08LCwgxJxqBBgyzKK1u2rFG+fPn7qhcAAMAWb7zxhuHr62ucP3/eYvqrr75qeHp6mu+f+vXrZ9jZ2RkbNmww5s6da0gyxowZY7FO0j1N9+7dzdMSExONRo0aGY6Ojsa5c+ce/gYBeGoxnAsAAEAGSOpNnqR79+6SpGXLlkmSXFxczPPi4uJ0/vx5hYSE6M8//1RcXJwkycvLS5K0ZMkS3bp1K8V65s6dK09PT9WrV0/nz583v8qXLy93d3etXbv2vuJ/++23Ld5Xr15df/7550OvFwAAPJsMw9D8+fPVpEkTGYZhcX8RGhqquLg47dy5U5IUHh6u4OBghYWFqUuXLgoJCVGPHj1SLLdbt27mv5N6uN+8eVOrV69+JNsF4OnEcC4AAAAZoHDhwhbvAwICZGdnpxMnTkiSIiMjNWDAAG3evFlXr161WDYuLk6enp4KCQlRixYtNHDgQI0ePVo1a9ZUs2bN1KZNGzk5OUmSjh49qri4OOXKlSvFOM6ePZvu2J2dneXt7W0xLVu2bBZjnT+MegEAwLPr3Llzunjxor755ht98803KS6TdH/h6OioqVOnqmLFinJ2dta0adNkMpmSLW9nZ6dChQpZTCtSpIgkme/JAOB+kEQHAAB4CO7+xy46Olp16tRRsWLFNGrUKOXPn1+Ojo5atmyZRo8ercTERPM68+bN05YtW7R48WKtWLFCHTt21MiRI7Vlyxa5u7srMTFRuXLl0qxZs1Ks995kuC3uHkvUmodRLwAAeHYl3f+89tprCgsLS3GZUqVKmf9esWKFJOn69es6evSoChYs+PCDBID/RxIdAAAgA9z7z9yxY8eUmJgof39/LV68WDdu3NAvv/yiAgUKmJexNgRKlSpVVKVKFQ0ePFizZ89W27Zt9cMPP6hTp04KCAjQ6tWrVa1aNYshYh62zKoXAAA8nby9veXh4aGEhATVrVs31WX37NmjQYMGqUOHDoqKilKnTp20d+9eeXp6WiyXmJioP//809z7XJKOHDkiSfL398/wbQDw7GBMdAAAgAwwYcIEi/dfffWVJKlBgwbmnt6GYZjnx8XFadq0aRbr/PfffxbLSFKZMmUkSTdu3JAktWrVSgkJCfrss8+SxXD79m1dvHjxgbbDmsyqFwAAPJ3s7e3VokULzZ8/X/v27Us2/9y5c5KkW7duqX379sqTJ4/Gjh2riIgInTlzRu+9916K5Y4fP978t2EYGj9+vLJkyaI6deo8nA0B8EygJzoAAEAGOH78uF588UXVr19fmzdv1syZM9WmTRuVLl1azs7OcnR0VJMmTdS5c2fFx8fr22+/Va5cuRQTE2MuY/r06Zo4caJeeuklBQQE6PLly/r222+VNWtWNWzYUJIUEhKizp07a8iQIYqKitILL7ygLFmy6OjRo5o7d67Gjh2rl19+OcO3L7PqBQAAT6+hQ4dq7dq1qly5st58800VL15csbGx2rlzp1avXq3Y2Fh9/vnnioqK0po1a+Th4aFSpUrp008/1ccff6yXX37ZfI8k3XnOy/LlyxUWFqbKlSvr119/1dKlS/XRRx8x9ByAB0ISHQAAIAP8+OOP+vTTT9W3b185ODioW7duGj58uCSpaNGimjdvnj7++GP17t1bPj4+euedd+Tt7a2OHTuaywgJCdHWrVv1ww8/6MyZM/L09FSlSpU0a9Ysi6FiJk+erPLly+vrr7/WRx99JAcHB/n7++u1115TtWrVHto2Zla9AADg6ZQ7d25t3bpVgwYN0s8//6yJEycqR44cCg4O1pdffqmdO3fqiy++ULdu3VSrVi3zen379tWiRYv05ptvav/+/fLy8pJ0p3f78uXL9c477+iDDz6Qh4eHBgwYoE8//TSTthDA08Jk3PubYQAAAAAAAOAJ0r59e82bN0/x8fGZHQqApxBjogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDgAAAAAAAACAFYyJDgAAAAAAAACAFfREBwAAAAAAAADACofMDgAAnkWJiYn6999/5eHhIZPJlNnhAAAAyDAMXb58WXny5JGdXcb1t+K+BwAAPG7Se99DEh0AMsG///6r/PnzZ3YYAAAAyZw6dUr58uXLsPK47wEAAI8rW+97SKIDQCbw8PCQdOdinTVr1kyOBgAAQLp06ZLy589vvk/JKNz3AACAx01673tIogNAJkj6KXPWrFn5ZxIAADxWMnrIFe57AADA48rW+x4eLAoAAAAAAAAAgBUk0QEAAAAAAAAAsIIkOgAAAAAAAAAAVpBEBwAAAAAAAADACpLoAAAAAAAAAABYQRIdAAAAAAAAAAArSKIDAAAAAAAAAGAFSXQAAAAAAAAAAKwgiQ4AAAAAAAAAgBUk0QEAAAAAAAAAsIIkOgAAAAAAAAAAVpBEBwAAAAAAAADACpLoAAAAAAAAAABYQRIdAAAAAAAAAAArSKIDAAAAAAAAAGAFSXQAAAAAAAAAAKwgiQ4AAAAAAAAAgBUk0QEAAAAAAAAAsIIkOgAAAAAAAAAAVpBEBwAAAAAAAADACpLoAAAAAAAAAABYQRIdAAAAAAAAAAArSKIDAAAAAAAAAGAFSXQAAAAAAAAAAKwgiQ4AAAAAAAAAgBUk0QEAAAAAAAAAsIIkOgAAAAAAAAAAVpBEBwAAAAAAAADACofMDgAAnmVVhqyWvZNbZocBAAAeI3vDQzM7hIfi2Nv55O5oyuwwAADAQ1YkIi6zQ8hw9EQHAAAAAAAAAMAKkugAAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWkEQHAAAAAAAAAMAKkugAAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWPDZJdJPJpIULF6b4/sSJEzKZTIqKinpo9YeHh6tMmTLm9+3bt1ezZs3M72vWrKmePXs+tPqlzG8DJBcRESEvL6/MDgMAAAAAAABAJnlkSfTTp0+re/fuKlSokJycnJQ/f341adJEa9askSTFxMSoQYMG5uXvfZ8RhgwZInt7ew0fPjzNZceOHauIiIgMqTc8PFwmk8n88vT0VPXq1bV+/fpU18vINvD397eIwWQyKV++fOb5p0+fVrt27eTj4yM3NzeVK1dO8+fPtyjj7nUdHBxUoEABvf/++7px44Z5mXPnzumdd95RgQIF5OTkJB8fH4WGhioyMjLdcdrb2ytPnjx644039N9//5mXWbdunUwmky5evJji+mPGjMmwul555RUdOXLEpvIe1L1f3CRJbXuLFSsmJycnnT59Ol11HT9+XG3atFGePHnk7OysfPnyqWnTpjp06JBN669fv161a9dW9uzZ5erqqsKFCyssLEw3b95Mtmznzp1lb2+vuXPnJpt3v+fG3Xbv3q0XX3xRuXLlkrOzs/z9/fXKK6/o7NmzyZZN6Rowf/582dvb659//kmx/MKFC+v999+3OR4AAID7cevyBZ1ZN0O3Ll9INi8mJkbh4eGKiYnJhMgAAAD+5+zVRH0VdV1nryY+UDlP2v3NI0minzhxQuXLl9dvv/2m4cOHa+/evVq+fLlq1aqlrl27SpJ8fHzk5ORkXufe9xlh6tSp6tOnj6ZOnZrmsp6enhnaAzk4OFgxMTGKiYnR5s2bVbhwYTVu3FhxcXFW18noNhg0aJA5hpiYGO3atcs87/XXX9fhw4f1yy+/aO/evWrevLlatWplsYwkTZs2TTExMTp+/LgmTpyoGTNm6PPPPzfPb9GihXbt2qXp06fryJEj+uWXX1SzZk1duJD8n4G04jx58qRmzZqlDRs2qEePHg/eAPdRl4uLi3LlyvVQ6n5QmzZt0rVr1/Tyyy9r+vTpNq9369Yt1atXT3Fxcfr55591+PBh/fjjjypZsmSKifp7HThwQPXr11eFChW0YcMG7d27V1999ZUcHR2VkJBgsezVq1f1ww8/pHre3c+5keTcuXOqU6eOsmfPrhUrVujgwYOaNm2a8uTJoytXriRbPqVrwIsvvqgcOXKk2IYbNmzQsWPH9MYbb6QZCwAAwIO4HR+rc+tn6XZ8bLJ5MTExGjhw4BPzTyYAAHh6nbtmaPzumzp3zXigcp60+5tHkkTv0qWLTCaTtm7dqhYtWqhIkSIKDg7W+++/ry1btkhKfSiTeyUkJKhjx44qVqyYTp48aVMM69ev17Vr1zRo0CBdunRJv//+e6rLW+sVnGTp0qXy9PTUrFmzbKrfwcFBPj4+8vHxUfHixTVo0CDFx8en2ss5o9vAw8PDHIOPj4+8vb3N837//Xd1795dlSpVUqFChfTxxx/Ly8tLO3bssCjDy8tLPj4+yp8/vxo3bqymTZtq586dkqSLFy9q48aN+vLLL1WrVi35+fmpUqVK6tevn1588UWbYrw7zrx586pWrVoKCwsz15HR0qrr3uFcoqOj1bRpU+XOnVvu7u6qWLGiVq9ebVHmxIkTVbhwYTk7Oyt37tx6+eWXH0rsU6ZMUZs2bdSuXTubvhhKsn//fkVHR2vixImqUqWK/Pz8VK1aNX3++eeqUqVKmuuvXLlSPj4+GjZsmEqUKKGAgADVr19f3377rVxcXCyWnTt3rooXL66+fftqw4YNOnXqVLLy7ufcSBIZGam4uDh99913Klu2rAoWLKhatWpp9OjRKliwoMWy1q4BWbJkUbt27VL85cnUqVNVuXJlBQcHpxlLWm7cuKFLly5ZvAAAAO6VcPN6snuG+Pj4zA4rXbjvAQDg6Xf1lqH4mym/7r0PSOn1pN3fPPQkemxsrJYvX66uXbvKzc0t2fz09va+ceOGWrZsqaioKG3cuFEFChSwab0pU6aodevWypIli1q3bq0pU6akq967zZ49W61bt9asWbPUtm3bdK9/48YNTZs2TV5eXipatOh9rX8/bZCaqlWr6scff1RsbKwSExP1ww8/6Pr166pZs6bVdY4cOaLffvtNlStXliS5u7vL3d1dCxcutBji5UH8888/Wrx4sbmOh8mWuuLj49WwYUOtWbNGu3btUv369dWkSRPzFxnbt29Xjx49NGjQIB0+fFjLly9XjRo1MjzWy5cva+7cuXrttdfMvco3btxo07re3t6ys7PTvHnzkvUct4WPj49iYmK0YcOGNJedMmWKXnvtNXl6eqpBgwZpDpGU3nPDx8dHt2/f1oIFC2QYqX8Dmto14I033tDRo0cttik+Pl7z5s3LsF7oQ4YMkaenp/mVP3/+DCkXAAA8XU5EfGBxz+Dp6amQkJDMDitduO8BAODp99qKqyo/53KKr3vvZVJ6PWn3Nw89iX7s2DEZhqFixYo9cFnx8fFq1KiRzp07p7Vr11r0pE7NpUuXNG/ePL322muSpNdee00//fTTfX3jMWHCBHXp0kWLFy9W48aNbV5v79695iSzi4uLRowYoTlz5ihr1qzpqv9+20CSPvzwQ3MM7u7uGjdunHneTz/9pFu3bilHjhxycnJS586dtWDBAgUGBlqU0bp1a7m7u8vZ2VlFixZVcHCw+vXrJ+lOj+KIiAhNnz5dXl5eqlatmj766CPt2bMnXduYFKeLi4vy5csnk8mkUaNGJVsuX758Ftvj7u5uc6/89NaVpHTp0urcubNKlCihwoUL67PPPlNAQIB++eUXSdLJkyfl5uamxo0by8/PT2XLlk3XUDRLlixJtk0pjYv/ww8/qHDhwgoODpa9vb1effVVm78Yyps3r8aNG6dPP/1U2bJlU+3atfXZZ5/pzz//tGn9li1bqnXr1goJCZGvr69eeukljR8/PlkPo6NHj2rLli165ZVXJN0576ZNm5Ys2f0g50aVKlX00UcfqU2bNsqZM6caNGig4cOH68yZMxbLpXUNKF68uKpUqWLRo/+nn36SYRh69dVXbWqXtPTr109xcXHmV0q98gEAAPzbD7e4Z4iLi0vX82IeB9z3AADw9JsZ6qodrT1SfN17L5PS60m7v3noSfS0eoemR+vWrXXlyhWtXLlSnp6eNq83Z84cBQQEqHTp0pKkMmXKyM/PTz/++GO66p83b57ee+89rVq1Kt3flhQtWlRRUVGKiorSjh079M4776hly5bavn17usq53zaQpA8++MAcQ1RUlF5//XXzvE8++UQXL17U6tWrtX37dr3//vtq1aqV9u7da1HG6NGjFRUVpd27d2vJkiU6cuSI2rVrZ57fokUL/fvvv/rll19Uv359rVu3TuXKlUvXQ1qT4tyzZ4/5wbONGjVK1mt648aNFtsTFRWlPHny3FebpFVXkvj4ePXu3VtBQUHy8vKSu7u7Dh48aE7e16tXT35+fipUqJDatWunWbNm6erVqzbHU6tWrWTb9N133yVbburUqeaEsHQnKTx37lxdvnzZpnq6du2q06dPa9asWXruuec0d+5cBQcHa9WqVWmua29vr2nTpunvv//WsGHDlDdvXn3xxRfmsc3vjjE0NFQ5c+aUJDVs2FBxcXH67bffLMp70HNj8ODBOn36tCZPnqzg4GBNnjxZxYoVszh2bbkGdOzYUfPmzTO34dSpU9WyZUt5eHjYFEdanJyclDVrVosXAADAvewdnZPdM7i7u2d2WOnCfQ8AAE8/1ywmuTum/Lr3PiCl15N2f/PQk+iFCxeWyWTSoUOHHrishg0bas+ePdq8eXO61psyZYr2798vBwcH8+vAgQPpGkdaksqWLStvb29NnTo13V8OODo6KjAwUIGBgSpbtqyGDh2qvHnzasyYMekq537bQJJy5sxpjiEwMNA8lE50dLTGjx+vqVOnqk6dOipdurQGDBigChUqaMKECRZl+Pj4KDAwUEWLFlWjRo00cOBA/fjjjzp27Jh5GWdnZ9WrV0+ffPKJfv/9d7Vv314DBgxId5yFCxdW7dq1NWbMGP3+++9au3atxXIFCxa02J7AwEA5ODjcV5ukVVeS3r17a8GCBfriiy/MSfySJUvq5s2bku6Msb5z507NmTNHvr6++vTTT1W6dGmbHtgpSW5ubsm2KW/evBbLHDhwQFu2bFGfPn3Mx3OVKlXMD/G0lYeHh5o0aaLBgwdr9+7dql69usVDYtOSN29etWvXTuPHj9f+/ft1/fp1TZ48WdKdMfunT5+upUuXmmN0dXVVbGxssvMuI86NHDlyqGXLlhoxYoQOHjyoPHnyaMSIEeb5tlwDknqc//TTTzp69KgiIyN5oCgAAHhkHNyzyzukrRzcsyeb5+vrqwEDBsjX1zcTIgMAAPgfbxeTupV2lLeL6YHKedLub9KXcbwP2bNnV2hoqCZMmKAePXokGxf94sWLNo+L/s4776hEiRJ68cUXtXTpUpt6g+/du1fbt2/XunXrlD37/25IY2NjVbNmTR06dMjmoWYCAgI0cuRI1axZU/b29ho/frxN61ljb2+va9eupWud+2mDtCT1lLazs/xOxd7eXomJiamua29vL0mpbkfx4sWtPiDVFrbUkVHSqisyMlLt27fXSy+9JOlOz/QTJ05YLOPg4KC6deuqbt26GjBggLy8vPTbb7+pefPmGRLjlClTVKNGjWRfcEybNk1TpkzRm2++me4yTSaTihUrluYDd63Jli2bfH19deXKFUnSsmXLdPnyZe3atcvcppK0b98+dejQIc3z/n7OjSSOjo4KCAgwx2LrNcDDw0MtW7bU1KlTFR0drSJFiqh69er3FQMAAEB6ZfHIodw126U4z9fXV+Hh4Y82IAAAgBTkcrVT9zLOD1zOk3Z/89CT6NKdccSrVaumSpUqadCgQSpVqpRu376tVatWadKkSTp48KDNZXXv3l0JCQlq3Lixfv31Vz3//POpLj9lyhRVqlQpxYc7VqxYUVOmTNHw4cNtrr9IkSJau3atatasKQcHB5t7y96+fVunT5+WdOehkD/++KMOHDigDz/80Oa6k6S3DdJSrFgxBQYGqnPnzhoxYoRy5MihhQsXatWqVVqyZInFshcvXtTp06eVmJioo0ePatCgQSpSpIiCgoJ04cIFtWzZUh07dlSpUqXk4eGh7du3a9iwYWratKnN8Vy+fFmnT5+WYRg6deqU+vTpI29vb1WtWvWBtjMj6ipcuLB+/vlnNWnSRCaTSZ988onFFw1LlizRn3/+qRo1aihbtmxatmyZEhMT7+sBsim5deuWZsyYoUGDBqlEiRIW8zp16qRRo0Zp//79Cg4OtlpGVFSUBgwYoHbt2ql48eJydHTU+vXrNXXqVJuOx6+//lpRUVF66aWXFBAQoOvXr+v777/X/v379dVXX0m6c941atTIPHxKkuLFi+u9997TrFmz1LVrV0kPdm4sWbJEP/zwg1599VUVKVJEhmFo8eLFWrZsmaZNm2aOxdZrwBtvvKHq1avr4MGDFvUvWLBA/fr1s/hFTbFixTRkyBDzFyr9+vXTP//8o++//z7NuAEAAAAAAPDkeCRJ9EKFCmnnzp0aPHiwevXqpZiYGHl7e6t8+fKaNGlSusvr2bOnEhMT1bBhQy1fvtxqwvPmzZuaOXOm1WRcixYtNHLkSH3xxRfpqr9o0aL67bffzD3SR44cmeY6+/fvN/88wdXVVQEBAZo0aZLFuOTpYWsb2CJLlixatmyZ+vbtqyZNmig+Pl6BgYGaPn26GjZsaLFshw4dJN3puezj46MaNWroiy++kIODg9zd3VW5cmWNHj1a0dHRunXrlvLnz68333xTH330kc3xfPrpp/r0008lSd7e3qpYsaJWrlypHDly3Pc2ZlRdo0aNUseOHVW1alXlzJlTH374ocUDNb28vPTzzz8rPDxc169fV+HChTVnzpxUk9rp8csvv+jChQvmxO3dgoKCFBQUpClTpqT6cNR8+fLJ399fAwcO1IkTJ2Qymczv33vvvTRjqFSpkjZt2qS3335b//77r9zd3RUcHKyFCxcqJCREZ86c0dKlSzV79uxk69rZ2emll17SlClTzEn0Bzk3ihcvLldXV/Xq1UunTp2Sk5OTChcurO+++07t2rVL1zUgS5Ysev7551W0aFEdO3bMov64uDgdPnzYYt3Dhw8rLi7O/D4mJibdD7YFAAAAAADA489kZOSTPzPIjRs35OzsrFWrVqlu3bqZHU6moA2Ap9ulS5fk6empoL7zZe/klvYKAADgmbE3PDRT6k26P4mLi8vQh4EmlbujtYfcHR9s/FQAAPD4KxIRl/ZCmSy99z2PpCd6ely6dEk///yz7OzsbB6r/GlDGwAAAAAAAADA48Eu7UUerQEDBujDDz/Ul19+qXz58qW5/KxZs+Tu7p7iK6OG0EiLtfrd3d21cePGdJf3JLaBLR5lnI9bm5w8eTLV4yQjhwHZuHFjqnWl5YsvvrC6boMGDTIsTls8bvsRAAAAAAAAz57HcjiX9Lh8+bLOnDmT4rwsWbLIz8/vocdw7Ngxq/Py5s0rFxeXh1r/49AGtniUcT5ubXL79m2dOHHC6nx/f385OGTMD0OuXbumf/75x+r8wMDAVNePjY1VbGxsivNcXFyUN2/eB4ovPR63/ZiRGM4FAABYw3AuAADgScZwLo8hDw8PeXh4ZGoMaSUlH7bHoQ1s8SjjfNzaxMHB4ZEdJy4uLg9UV/bs2ZU9e/YMjOj+PW77EQAAAAAAAM+ex244FwAAAAAAAAAAHhck0QEAAAAAAAAAsIIkOgAAAAAAAAAAVpBEBwAAAAAAAADACpLoAAAAAAAAAABYQRIdAAAAAAAAAAArSKIDAAAAAAAAAGAFSXQAAAAAAAAAAKwgiQ4AAAAAAAAAgBUOmR0AADzLtvSrq6xZs2Z2GAAAAA9d4OS/ue8BAABPJHqiAwAAAAAAAABgBUl0AAAAAAAAAACsIIkOAAAAAAAAAIAVJNEBAAAAAAAAALCCJDoAAAAAAAAAAFaQRAcAAAAAAAAAwAqS6AAAAAAAAAAAWEESHQAAAAAAAAAAK0iiAwAAAAAAAABgBUl0AAAAAAAAAACscMjsAADgWVZlyGrZO7lldhgAkKH2hodmdggAHkPH3s4nd0dTZocBABmqSERcZocA4BGgJzoAAAAAAAAAAFaQRAcAAAAAAAAAwAqS6AAAAAAAAAAAWEESHQAAAAAAAAAAK0iiAwAAAAAAAABgBUl0AAAAAAAAAACsIIkOAAAAAAAAAIAVJNEBAAAAAAAAALCCJDoAAAAAAAAAAFaQRAcAAAAAAAAAwAqS6AAAAAAAAAAAWEESHQAAAAAAAAAAK0iiAwAAAAAAAABgBUl0AAAAAAAAAACsIIkOAAAAAAAAAIAVJNEBPDQRERHy8vIyvw8PD1eZMmUeeRzt27dXs2bNHnm9AAAAAAAAePKRRMdDd/r0aXXv3l2FChWSk5OT8ufPryZNmmjNmjWZHVqmJXUBAAAAAAAAPBlIouOhOnHihMqXL6/ffvtNw4cP1969e7V8+XLVqlVLXbt2zezwnmgJCQlKTEx8aOXfvHnzoZV9Px63eAAAd9y6fEFn1s3QrcsXks2LiYlReHi4YmJiMiEyAACAjHX2aqK+irqus1eT/y/OfQ/wdCOJjoeqS5cuMplM2rp1q1q0aKEiRYooODhY77//vrZs2WJTGRcvXlTnzp2VO3duOTs7q0SJElqyZImklHuSjxkzRv7+/ub369atU6VKleTm5iYvLy9Vq1ZNf/31lyIiIjRw4EDt3r1bJpNJJpNJERERkqSTJ0+qadOmcnd3V9asWdWqVSudOXPGXGZSvVOnTlWBAgXk7u6uLl26KCEhQcOGDZOPj49y5cqlwYMH29xWo0aNUsmSJeXm5qb8+fOrS5cuio+PN89PGhrll19+UfHixeXk5KSTJ0/aVHZCQoLef/99eXl5KUeOHOrTp4/CwsIshjipWbOmunXrpp49eypnzpwKDQ194JgfRNIQLIMHD1aePHlUtGhRSdKpU6fUqlUreXl5KXv27GratKlOnDiR6rYahmFRtr+/v8aMGWMxrUyZMgoPDze/T+24k6RNmzapevXqcnFxUf78+dWjRw9duXIlQ7YdAJ4kt+NjdW79LN2Oj002LyYmRgMHDuSfSQAA8FQ4d83Q+N03de6akWwe9z3A040kOh6a2NhYLV++XF27dpWbm1uy+XePlW1NYmKiGjRooMjISM2cOVMHDhzQ0KFDZW9vb1MMt2/fVrNmzRQSEqI9e/Zo8+bNeuutt2QymfTKK6+oV69eCg4OVkxMjGJiYvTKK68oMTFRTZs2VWxsrNavX69Vq1bpzz//1CuvvGJRdnR0tH799VctX75cc+bM0ZQpU9SoUSP9/fffWr9+vb788kt9/PHH+uOPP2yK1c7OTuPGjdP+/fs1ffp0/fbbb+rTp4/FMlevXtWXX36p7777Tvv371euXLkUHh5u8aWBdCdJfHdCeOTIkYqIiNDUqVO1adMmxcbGasGCBclimD59uhwdHRUZGanJkydnSMwPYs2aNTp8+LBWrVqlJUuW6NatWwoNDZWHh4c2btyoyMhIubu7q379+uae6rZua2rSOu6io6NVv359tWjRQnv27NGPP/6oTZs2qVu3blbLvHHjhi5dumTxAoCnScLN60q4cUUJN66Yr3MZ9cUqgCcL9z0AnnZXbxmKv3nnxX0P8GxwyOwA8PQ6duyYDMNQsWLF7ruM1atXa+vWrTp48KCKFCkiSSpUqJDN61+6dElxcXFq3LixAgICJElBQUHm+e7u7nJwcJCPj4952qpVq7R3714dP35c+fPnlyR9//33Cg4O1rZt21SxYkVJdxKtU6dOlYeHh4oXL65atWrp8OHDWrZsmezs7FS0aFF9+eWXWrt2rSpXrpxmrD179jT/7e/vr88//1xvv/22Jk6caJ5+69YtTZw4UaVLlzZPy5kzp3nbkgQEBChnzpzm92PGjFG/fv3UvHlzSdLkyZO1YsWKZDEULlxYw4YNSzPW9MT8INzc3PTdd9/J0dFRkjRz5kwlJibqu+++k8lkkiRNmzZNXl5eWrdunV544QWbtzU1aR13Q4YMUdu2bc3bX7hwYY0bN04hISGaNGmSnJ2dk5U5ZMgQDRw4MN1tAABPihMRH5j/9hyaiYEAyHTc9wB42r224ur/3szxzLxAADwyJNHx0Nw7hMb9iIqKUr58+cyJzPTKnj272rdvr9DQUNWrV09169ZVq1at5Ovra3WdgwcPKn/+/OYEuiQVL15cXl5eOnjwoDmJ7u/vLw8PD/MyuXPnlr29vezs7CymnT171qZYV69erSFDhujQoUO6dOmSbt++revXr+vq1atydXWVJDk6OqpUqVIW63Xr1i1ZD+i7H9oaFxenmJgYi0S+g4ODKlSokGwflS9f3qZY0xPzgyhZsqQ5gS5Ju3fv1rFjxyzaXZKuX7+u6OjodG1ratI67nbv3q09e/Zo1qxZ5mmGYSgxMVHHjx+3+KImSb9+/fT++++b31+6dMniGAOAJ51/++Fy8bnzheOWfnUl3bmehoSEZGZYADIB9z0AnnYzQ10VlP3OL5UDJ/8tifse4GnHcC54aAoXLiyTyaRDhw7ddxkuLi6pzrezs0uWHL1165bF+2nTpmnz5s2qWrWqfvzxRxUpUsTm8dhTkyVLFov3JpMpxWm2PPzzxIkTaty4sUqVKqX58+drx44dmjBhgiTLB2q6uLiYe2A/DCkNu2ONrTFnZDzx8fEqX768oqKiLF5HjhxRmzZtbC43reMmreMuPj5enTt3tohh9+7dOnr0aLJfBSRxcnJS1qxZLV4A8DSxd3SWvZOb7J3czNc5d3f3zA4LQCbgvgfA0841i0nujnde3PcAzwaS6HhosmfPrtDQUE2YMCHFBy5evHgxzTJKlSqlv//+W0eOHElxvre3t06fPm2REI2Kikq2XNmyZdWvXz/9/vvvKlGihGbPni3pTs/uhIQEi2WDgoJ06tQpnTp1yjztwIEDunjxoooXL55mzPdjx44dSkxM1MiRI1WlShUVKVJE//77b4aU7enpKV9fX4ux2W/fvq0dO3Y8ULkPM2ZrypUrp6NHjypXrlwKDAy0eHl6etq8rd7e3hYPe7l06ZKOHz9ufp/WcVeuXDkdOHAgWQyBgYEWPecB4Fng4J5d3iFt5eCePdk8X19fDRgwINVfgAEAADwpvF1M6lbaUd4uyTu3cd8DPN1IouOhmjBhghISElSpUiXNnz9fR48e1cGDBzVu3Dg999xzaa4fEhKiGjVqqEWLFlq1apWOHz9ufpinJNWsWVPnzp3TsGHDFB0drQkTJujXX381r3/8+HH169dPmzdv1l9//aWVK1fq6NGj5uE2/P39dfz4cUVFRen8+fO6ceOG6tatq5IlS6pt27bauXOntm7dqtdff10hISGqUKHCQ2mnwMBA3bp1S1999ZX+/PNPzZgxw6YHe0rS+PHjVadOHYtpderU0fjx483v3333XQ0dOlQLFy7UoUOH1KVLF5u+xHhYMd+vtm3bKmfOnGratKk2btyo48ePa926derRo4f+/vvOT+hs2dbatWtrxowZ2rhxo/bu3auwsDCLh9Wmddx9+OGH+v3339WtWzdFRUXp6NGjWrRoUaoPFgWAp1UWjxzKXbOdsnjkSDbP19dX4eHh/DMJAACeCrlc7dS9jLNyuSZPp3HfAzzdSKLjoSpUqJB27typWrVqqVevXipRooTq1aunNWvWaNKkSTaVMX/+fFWsWFGtW7dW8eLF1adPH3Pv8aCgIE2cOFETJkxQ6dKltXXrVvXu3du8rqurqw4dOqQWLVqoSJEieuutt9S1a1d17txZktSiRQvVr19ftWrVkre3t+bMmSOTyaRFixYpW7ZsqlGjhurWratChQrpxx9/zPgG+n+lS5fWqFGj9OWXX6pEiRKaNWuWhgwZYtO658+fV3R0tMW06OhonT9/3vy+V69eateuncLCwvTcc8/Jw8NDL730UqbFfL9cXV21YcMGFShQQM2bN1dQUJDeeOMNXb9+3fwzYVu2tV+/fgoJCVHjxo3VqFEjNWvWLNkwLKkdd6VKldL69et15MgRVa9eXWXLltWnn36qPHnyPNTtBwAAAAAAwKNnMjLi6Y8Anjjt27fXxYsXtXDhwswO5Zl06dIleXp6KqjvfNk72T4WPQA8CfaGh2Z2CADuQ9L9SVxcXIaOY55U7o7WHnJ3fHjP9wGAzFAkIi6zQwBwH9J730NPdAAAAAAAAAAArCCJjgdy8uRJubu7W32dPHky1fVnzZpldd3g4OBHtBUP35O4nQ875tSOm40bN2bAFgAAAAAAAAAPziGzA8CTLU+ePIqKikp1fmpefPFFVa5cOcV5WbJkeZDQHiuP43ZGRESkOv9hx5zacZM3b94HLh8AAAAAAADICCTR8UAcHBwUGBh43+t7eHjIw8MjAyN6PD2J2/mwY36Q4wYAAAAAAAB4VBjOBQAAAAAAAAAAK0iiAwAAAAAAAABgBUl0AAAAAAAAAACsIIkOAAAAAAAAAIAVJNEBAAAAAAAAALCCJDoAAAAAAAAAAFaQRAcAAAAAAAAAwAqS6AAAAAAAAAAAWEESHQAAAAAAAAAAK0iiAwAAAAAAAABghUNmBwAAz7It/eoqa9asmR0GAADAQxc4+W/uewAAwBOJnugAAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWkEQHAAAAAAAAAMAKkugAAAAAAAAAAFjhkNkBAMCzrMqQ1bJ3csvsMAAgQ+0ND83sEAA8ho69nU/ujqbMDgMAMlSRiLjMDgHAI0BPdAAAAAAAAAAArCCJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWkEQHAAAAAAAAAMAKkugAAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWkEQHAAAAAAAAAMAKkugAAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYMUzkUQ3mUxauHCh1fknTpyQyWRSVFTUQ41j3bp1MplMunjxok3L16xZUz179nyoMSVp3769mjVr9kjqymh379+HuS/Tu/8AAAAAAAAAPPmeiSR6TEyMGjRokNlhqGrVqoqJiZGnp2dmhwKk6n6/VHlcv4wJDw9XmTJlMjsMAHgq3bp8QWfWzdCtyxeSzYuJiVF4eLhiYmIyITIAAICMdfZqor6Kuq6zVxOTzeO+B3i6PRNJdB8fHzk5OWV2GHJ0dJSPj49MJtNDKf/mzZsPpdyniWEYun37dmaHkWk4RgAAGe12fKzOrZ+l2/GxyebFxMRo4MCB/DMJAACeCueuGRq/+6bOXTOSzeO+B3i6PdZJ9G+++UZ58uRRYqLlN3xNmzZVx44dze8nTZqkgIAAOTo6qmjRopoxY4bF8vcO57J161aVLVtWzs7OqlChgnbt2pVmLGfPnlWTJk3k4uKiggULatasWfL399eYMWMkpTyMyMWLF2UymbRu3TpJKQ8HEhkZqZo1a8rV1VXZsmVTaGio/vvvvxRjWLp0qTw9PTVr1ixJ/+v1O3jwYOXJk0dFixaVJJ06dUqtWrWSl5eXsmfPrqZNm+rEiRPmchISEvT+++/Ly8tLOXLkUJ8+fWQYlh8Ad29bkjJlyig8PNxi+zp37qzcuXPL2dlZJUqU0JIlS8zzN23apOrVq8vFxUX58+dXjx49dOXKlTTb+m7btm1TvXr1lDNnTnl6eiokJEQ7d+60ef2kNv/1119Vvnx5OTk5adOmTUpMTNSQIUNUsGBBubi4qHTp0po3b57FusuWLVORIkXk4uKiWrVqWbShlHLv5jFjxsjf399i2tSpUxUcHCwnJyf5+vqqW7du5nkXL15Up06d5O3traxZs6p27dravXu3TduWVP/XX3+t/Pnzy9XVVa1atVJcXJx5GWvHyN69e1W7dm25uLgoR44ceuuttxQfH28ud/r06Vq0aJFMJpPFMXw/69WuXdtimyXp3LlzcnR01Jo1ayTdOd4+++wztW7dWm5ubsqbN68mTJhgsc79tlVERIQGDhyo3bt3m+OKiIhQ79691bhxY/NyY8aMkclk0vLly83TAgMD9d1339m0P9Jy48YNXbp0yeIFAE+ThJvXlXDjihJuXDFf55I+IwA8W7jvAfC0u3rLUPzNOy/ue4Bnw2OdRG/ZsqUuXLigtWvXmqfFxsZq+fLlatu2rSRpwYIFevfdd9WrVy/t27dPnTt3VocOHSzWuVt8fLwaN26s4sWLa8eOHQoPD1fv3r3TjKV9+/Y6deqU1q5dq3nz5mnixIk6e/bsA21fVFSU6tSpo+LFi2vz5s3atGmTmjRpooSEhGTLzp49W61bt9asWbPM2y5Ja9as0eHDh7Vq1SotWbJEt27dUmhoqDw8PLRx40ZFRkbK3d1d9evXN/dCHjlypCIiIjR16lRt2rRJsbGxWrBgQbpiT0xMVIMGDRQZGamZM2fqwIEDGjp0qOzt7SVJ0dHRql+/vlq0aKE9e/boxx9/1KZNmyySqeHh4ckSzv7+/haJ+suXLyssLEybNm3Sli1bVLhwYTVs2FCXL19OV7x9+/bV0KFDdfDgQZUqVUpDhgzR999/r8mTJ2v//v1677339Nprr2n9+vWS7nwR0bx5czVp0kRRUVHq1KmT+vbtm646pTtf8HTt2lVvvfWW9u7dq19++UWBgYHm+S1bttTZs2f166+/aseOHSpXrpzq1Kmj2NjkvflScuzYMf30009avHixli9frl27dqlLly4Wy9x7jFy5ckWhoaHKli2btm3bprlz52r16tXmfdO7d2+1atVK9evXV0xMjGJiYlS1atX7Xq9Tp06aPXu2bty4YY5p5syZyps3r2rXrm2eNnz4cJUuXVq7du1S37599e6772rVqlUP3FavvPKKevXqpeDgYHNcr7zyikJCQrRp0ybz+bZ+/XrlzJnT/IXBP//8o+joaNWsWdOmfZGWIUOGyNPT0/zKnz9/hpQLAI+LExEf6ODQFjo4tIX5WhcSEpLZYQHIBNz3AHjavbbiqsrPuazycy5z3wM8IxwyO4DUZMuWTQ0aNNDs2bNVp04dSdK8efOUM2dO1apVS5I0YsQItW/f3pw4fP/997VlyxaNGDHCvMzdZs+ercTERE2ZMkXOzs4KDg7W33//rXfeecdqHEeOHNGvv/6qrVu3qmLFipKkKVOmKCgo6IG2b9iwYapQoYImTpxonhYcHJxsuQkTJqh///5avHhxsouym5ubvvvuOzk6Okq6k5xMTEzUd999Zx42Ztq0afLy8tK6dev0wgsvaMyYMerXr5+aN28uSZo8ebJWrFiRrthXr16trVu36uDBgypSpIgkqVChQub5Q4YMUdu2bc0PRi1cuLDGjRunkJAQTZo0Sc7OzsqZM6cCAgIsyg0ICFDOnDnN7+9Oskp3fp3g5eWl9evXW/QiTsugQYNUr149SXd6xnzxxRdavXq1nnvuOXPsmzZt0tdff22OMSAgQCNHjpQkFS1aVHv37tWXX35pc52S9Pnnn6tXr1569913zdOSjqFNmzZp69atOnv2rHm4oREjRmjhwoWaN2+e3nrrrTTLv379ur7//nvlzZtXkvTVV1+pUaNGGjlypHx8fCQlP0a+/fZb83pubm6SpPHjx6tJkyb68ssvlTt3brm4uOjGjRvmMiRp+vTp97Ve8+bN1a1bNy1atEitWrWSdKd3ePv27S2GNqpWrZr5i4oiRYooMjJSo0ePVr169R6orVxcXOTu7i4HBweLuKpXr67Lly9r165dKl++vDZs2KAPPvjA/KuVdevWKW/evBZfejyIfv366f333ze/v3TpEv9QAniq+LcfLhefO/cCW/rVlXSnwwD/UALPHu57ADztZoa6Kij7nU6EgZP/lsR9D/C0e6yT6JLUtm1bvfnmm5o4caKcnJw0a9Ysvfrqq7Kzu9OJ/uDBg8kSaNWqVdPYsWNTLC+pJ7Kzs7N5WlIi1ZqDBw/KwcFB5cuXN08rVqyYvLy87nOr7oiKilLLli1TXWbevHk6e/asIiMjzcnXu5UsWdKcHJWk3bt369ixY/Lw8LBY7vr164qOjlZcXJxiYmJUuXJl8zwHBwdVqFAh2ZAuacWeL18+cwL9Xrt379aePXvMQ89Id8YjT0xM1PHjxxUUFKRu3bolG+YjaXiPJGfOnNHHH3+sdevW6ezZs0pISNDVq1d18uRJm2OVpAoVKpj/PnbsmK5evWpOqie5efOmypYtK+nOPr+7jaS0j5N7nT17Vv/++6/5C6B77d69W/Hx8cqRI4fF9GvXrik6OtqmOgoUKGBOoCfFmJiYqMOHD5sTxvceIwcPHlTp0qXNiXDpzjmTtF7u3LlTrOt+13N2dla7du00depUtWrVSjt37tS+ffv0yy+/WCx3b/s+99xz5iGFMqKt7uXl5aXSpUtr3bp1cnR0lKOjo9566y0NGDBA8fHxWr9+fYbeADk5OT0Wz2YAgIfF3tFZ9k53PiOyZs0qSXJ3d8/MkABkEu57ADztXLOY5O54p1MY9z3As+GxT6I3adJEhmFo6dKlqlixojZu3KjRo0dndljJJCX1705E37p1K9V1XFxc0iy3bNmy2rlzp6ZOnaoKFSokeyjp3QlN6c5wNeXLl7dIXifx9vZOs74kdnZ2yZLqd29PWrHHx8erc+fO6tGjR7J5BQoUsDmOsLAwXbhwQWPHjpWfn5+cnJz03HPPpfsBmXe3U9I4ZUuXLrVIQEtK181+RrSRr6+vefiQuz3oFzR3u/cYyQydOnVSmTJl9Pfff2vatGmqXbu2/Pz8bF7/YbVVzZo1tW7dOjk5OSkkJETZs2dXUFCQNm3apPXr16tXr173XTYAPCsc3LPLO6StHNyzJ5vn6+urAQMGyNfXNxMiAwAAyFjeLiZ1K+0obxdTsnnc9wBPt8d6THTpTi/W5s2ba9asWZozZ46KFi2qcuXKmecHBQUpMjLSYp3IyEgVL148xfKCgoK0Z88eXb9+3Txty5YtqcZQrFgx3b59Wzt27DBPO3z4sMUDQpMS1Hc/hfnuh4ympFSpUsl6Xt8rICBAa9eu1aJFi9S9e/dUl5WkcuXK6ejRo8qVK5cCAwMtXknjdPn6+uqPP/4wr3PvtiVtz93bcunSJR0/ftwi9r///ltHjhyxGseBAweSxRAYGGjRKzotkZGR6tGjhxo2bGh+OOf58+dtXj8lxYsXl5OTk06ePJkstqSfmQYFBWnr1q0W6917nHh7e+v06dMWifS797mHh4f8/f2t7uNy5crp9OnTcnBwSBbH3UPapObkyZP6999/LWK0s7MzP0A0JUFBQdq9e7fFQ14jIyMt1nN0dEw2Nv/9rifd6Q1foUIFffvtt5o9e7bFg4Hvjv3e90lDJj1oW1mLK2lc9DVr1pjHPq9Zs6bmzJmjI0eOZNh46ADwNMvikUO5a7ZTFo8cyeb5+voqPDycfyYBAMBTIZernbqXcVYu1+TpNO57gKfbY59El+4M6bJ06VJNnTrV4qGakvTBBx8oIiJCkyZN0tGjRzVq1Cj9/PPPVh8W2qZNG5lMJr355ps6cOCAli1bphEjRqRaf9GiRVW/fn117txZf/zxh3bs2KFOnTpZ9DR2cXFRlSpVzA+vXL9+vT7++ONUy+3Xr5+2bdumLl26aM+ePTp06JAmTZqULElcpEgRrV27VvPnzzePMW5N27ZtlTNnTjVt2lQbN27U8ePHtW7dOvXo0UN//31nnK53331XQ4cO1cKFC3Xo0CF16dLF4gsB6c5Y5DNmzNDGjRu1d+9ehYWFmR8aKt1JPtaoUUMtWrTQqlWrdPz4cf36669avny5JOnDDz/U77//rm7duikqKkpHjx7VokWLLIZvGT9+fLKhTurUqaPx48eb3xcuXFgzZszQwYMH9ccff6ht27Y29eBPjYeHh3r37q333ntP06dPV3R0tHbu3KmvvvpK06dPlyS9/fbbOnr0qD744AMdPnxYs2fPVkREhEU5NWvW1Llz5zRs2DBFR0drwoQJ+vXXXy2WCQ8P18iRIzVu3DgdPXrUXI8k1a1bV88995yaNWumlStX6sSJE/r999/Vv39/bd++3aZtcXZ2VlhYmHbv3q2NGzeqR48eatWqlcXY3/dq27ateb19+/Zp7dq16t69u9q1a2ceksXf31979uzR4cOHdf78ed26deu+10vSqVMnDR06VIZh6KWXXkoWV2RkpIYNG6YjR45owoQJmjt3rnks+QdtK39/fx0/flxRUVE6f/68+SGnNWrU0OXLl7VkyRKLJPqsWbPk6+trHq6oX79+ev31183lbd26VcWKFdM///xjnnbvsQsAAAAAAICnwxORRK9du7ayZ8+uw4cPq02bNhbzmjVrprFjx2rEiBEKDg7W119/rWnTplntQeru7q7Fixdr7969Klu2rPr372/TwyKnTZumPHnyKCQkRM2bN9dbb72lXLlyWSwzdepU3b59W+XLl1fPnj31+eefp1pmkSJFtHLlSu3evVuVKlXSc889p0WLFsnBIfkoO0WLFtVvv/2mOXPmpDrEhKurqzZs2KACBQqoefPmCgoK0htvvKHr16+bx+nq1auX2rVrp7CwMD333HPy8PBIltTs16+fQkJC1LhxYzVq1EjNmjVL9hDQ+fPnq2LFimrdurWKFy+uPn36mHv7lipVSuvXr9eRI0dUvXp1lS1bVp9++qny5MljXv/8+fPJxrOOjo62+BJhypQp+u+//1SuXDm1a9dOPXr0SNbu9+Ozzz7TJ598oiFDhigoKEj169fX0qVLVbBgQUl3hpyZP3++Fi5cqNKlS2vy5Mn64osvLMoICgrSxIkTNWHCBJUuXVpbt25N9uVNWFiYxowZo4kTJyo4OFiNGzfW0aNHJUkmk0nLli1TjRo11KFDBxUpUkSvvvqq/vrrL6vji98rMDBQzZs3V8OGDfXCCy+oVKlSFg+qTYmrq6tWrFih2NhYVaxYUS+//HKyBPCbb76pokWLqkKFCvL29lZkZOR9r5ekdevWcnBwUOvWrS2eSZCkV69e2r59u8qWLavPP/9co0aNUmhoaIa0VYsWLVS/fn3VqlVL3t7emjNnjqQ7Dy8uWbKkvL29VaxYMUl3EuuJiYkW46HHxMRYjMN/9epVHT582OJLgnuPXQAAAAAAADwdTEZ6niYJC/7+/urZs2eavcOBhyE8PFwLFy5Mc9igx8WJEycUEBCgbdu2WQzJJD2b59KlS5fk6empoL7zzQ/iA4Cnxd7w0MwOAcB9SLo/iYuLM3fAychyd7T2MD+IDwCeFkUi4jI7BAD3Ib33PY/9g0UBPNlu3bqlCxcu6OOPP1aVKlWSJdABAAAAAACAx9kTMZwL8CwKDg6Wu7t7iq9Zs2Zldng2i4yMlK+vr7Zt26bJkyc/lDqelrYCAAAAAADA44ee6A/gxIkTmR0CnmLLli2zGHP7brlz55aHh4fCw8MfbVD3oWbNmkpr1KgHPZfSaisAAAAAAADgfpFEBx5Tfn5+mR3CE4O2AgAAAAAAwMPCcC4AAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWkEQHAAAAAAAAAMAKkugAAAAAAAAAAFjhkNkBAMCzbEu/usqaNWtmhwEAAPDQBU7+m/seAADwRKInOgAAAAAAAAAAVpBEBwAAAAAAAADACpLoAAAAAAAAAABYQRIdAAAAAAAAAAArSKIDAAAAAAAAAGAFSXQAAAAAAAAAAKwgiQ4AAAAAAAAAgBUk0QEAAAAAAAAAsIIkOgAAAAAAAAAAVpBEBwAAAAAAAADACofMDgAAAAAA8PQ79nY+uTuaMjsMAACeCEUi4jI7BNyFnugAAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWkEQHAAAAAAAAAMAKkugAAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWkEQH7uLv768xY8ZkdhjJhIeHq0yZMub37du3V7NmzR55HDVr1lTPnj0feb3368SJEzKZTIqKisrsUAAAAAAAAPCEIokOZLDMSnADAAAAAAAAyHgk0YFnzM2bNzM7BNxlz549mR0CAAAAAAB4RM5eTdRXUdd19mqiTcvHxMQoPDxcMTExDzkypIYkOh65GzduqEePHsqVK5ecnZ31/PPPa9u2bZKkdevWyWQyac2aNapQoYJcXV1VtWpVHT582KKMRYsWqVy5cnJ2dlahQoU0cOBA3b59O826DcNQeHi4ChQoICcnJ+XJk0c9evSwWObq1avq2LGjPDw8VKBAAX3zzTcW8/fu3avatWvLxcVFOXLk0FtvvaX4+HhJd4ZdmT59uhYtWiSTySSTyaR169alGdeHH36oIkWKyNXVVYUKFdInn3yiW7dupbmeLWrWrKlu3bqpZ8+eypkzp0JDQyVJ+/btU4MGDeTu7q7cuXOrXbt2On/+vHm9K1eu6PXXX5e7u7t8fX01cuTIZGWbTCYtXLjQYpqXl5ciIiLM7//++2+1bt1a2bNnl5ubmypUqKA//vjDPP9+96UkHTp0SM8//7ycnZ1VvHhxrV69OsWYkkRERMjLy8ti2sKFC2UymSymTZo0SQEBAXJ0dFTRokU1Y8aMZNv93Xff6aWXXpKrq6sKFy6sX375xaaY73Xw4MH7Wg8AAAAAADx5zl0zNH73TZ27Zti0fExMjAYOHEgSPZORRMcj16dPH82fP1/Tp0/Xzp07FRgYqNDQUMXGxpqX6d+/v0aOHKnt27fLwcFBHTt2NM/buHGjXn/9db377rs6cOCAvv76a0VERGjw4MFp1j1//nyNHj1aX3/9tY4ePaqFCxeqZMmSFsuMHDlSFSpU0K5du9SlSxe988475iT+lStXFBoaqmzZsmnbtm2aO3euVq9erW7dukmSevfurVatWql+/fqKiYlRTEyMqlatmmZcHh4eioiI0IEDBzR27Fh9++23Gj16tE3taYvp06fL0dFRkZGRmjx5si5evKjatWurbNmy2r59u5YvX64zZ86oVatW5nU++OADrV+/XosWLdLKlSu1bt067dy5M131xsfHKyQkRP/8849++eUX7d69W3369FFi4p1vWx9kXyYkJKhZs2ZydXXVH3/8oW+++Ub9+/dPX8OkYMGCBXr33XfVq1cv7du3T507d1aHDh20du1ai+UGDhyoVq1aac+ePWrYsKHatm1rcQzf68aNG7p06ZLFCwAA4GnEfQ8AAGm7estQ/E3rr6TP0KSOm8hcDpkdAJ4tV65c0aRJkxQREaEGDRpIkr799lutWrVKU6ZMUcWKFSVJgwcPVkhIiCSpb9++atSoka5fvy5nZ2cNHDhQffv2VVhYmCSpUKFC+uyzz9SnTx8NGDAg1fpPnjwpHx8f1a1bV1myZFGBAgVUqVIli2UaNmyoLl26SLrTQ3z06NFau3atihYtqtmzZ+v69ev6/vvv5ebmJkkaP368mjRpoi+//FK5c+eWi4uLbty4IR8fH5vb5eOPPzb/7e/vr969e+uHH35Qnz59bC4jNYULF9awYcPM7z///HOVLVtWX3zxhXna1KlTlT9/fh05ckR58uTRlClTNHPmTNWpU0fSnUR8vnz50lXv7Nmzde7cOW3btk3Zs2eXJAUGBprnP8i+XLVqlaKjo7Vu3TpzWw8ePFj16tVLV4z3GjFihNq3b28+Bt5//31t2bJFI0aMUK1atczLtW/fXq1bt5YkffHFFxo3bpy2bt2q+vXrp1jukCFDNHDgwAeKDQAA4EnAfQ8AAGl7bcXV1BeY4/loAoFNSKLjkYqOjtatW7dUrVo187QsWbKoUqVKOnjwoDmJXqpUKfN8X19fSdLZs2dVoEAB7d69W5GRkRa9lRMSEnT9+nVdvXpVrq6uVutv2bKlxowZo0KFCql+/fpq2LChmjRpIgeH/50Kd9dtMpnk4+Ojs2fPSroz9Ebp0qXNCXRJqlatmhITE3X48GHlzp37vtrlxx9/1Lhx4xQdHa34+Hjdvn1bWbNmva+yUlK+fHmL97t379batWvl7u6ebNno6Ghdu3ZNN2/eVOXKlc3Ts2fPrqJFi6ar3qioKJUtW9acQL/Xg+zLw4cPK3/+/BZfVtz7hcj9OHjwoN566y2LadWqVdPYsWMtpt19nLi5uSlr1qzm4yQl/fr10/vvv29+f+nSJeXPn/+B4wUAAHjccN8DAEDaZoa6Kii7vdX5gZP/lnQnt5LU0RSZhyQ6HktZsmQx/500XnXSECDx8fEaOHCgmjdvnmw9Z2fnVMvNnz+/Dh8+rNWrV2vVqlXq0qWLhg8frvXr15vrvLvupPqT6n4YNm/erLZt22rgwIEKDQ2Vp6enfvjhhxTHIL9fdyf9pTttmNR7/l6+vr46duyYTeWaTCYZhuUYXneP5e7i4pLq+g+yL++HnZ1dqvGmR3qPEycnJzk5Od1XXQAAAE8S7nsAAEibaxaT3B1NVucnda5MqQMkHj3GRMcjlfSwxsjISPO0W7duadu2bSpevLhNZZQrV06HDx9WYGBgspedXdqHtIuLi5o0aaJx48Zp3bp12rx5s/bu3WtT3UFBQdq9e7euXLlinhYZGSk7OztzL21HR0clJCTYVJ4k/f777/Lz81P//v1VoUIFFS5cWH/99ZfN69+PcuXKaf/+/fL390/Whm5ubgoICFCWLFksHgD633//6ciRIxbleHt7WzzY4ujRo7p69X8/RypVqpSioqKsjhX+IPuyaNGiOnXqlM6cOWOelvSAWmu8vb11+fJli/0XFRVlsUxQUJDF8Snd2ce2Hp/pFRQU9FDKBQAAAAAAjx9vF5O6lXaUt4v1BPrdfH19NWDAAPNIDcgcJNHxSLm5uemdd97RBx98oOXLl+vAgQN68803dfXqVb3xxhs2lfHpp5/q+++/18CBA7V//34dPHhQP/zwg8W44tZERERoypQp2rdvn/7880/NnDlTLi4u8vPzs6nutm3bytnZWWFhYdq3b5/Wrl2r7t27q127duahXPz9/bVnzx4dPnxY58+fT7Onc+HChXXy5En98MMPio6O1rhx47RgwQKb4rlfXbt2VWxsrFq3bq1t27YpOjpaK1asUIcOHZSQkCB3d3e98cYb+uCDD/Tbb79p3759at++fbLEdu3atTV+/Hjt2rVL27dv19tvv23RQ7t169by8fFRs2bNFBkZqT///FPz58/X5s2bJT3YvqxXr54CAgIUFhamPXv2KDIy0rxe0q8X7lW5cmW5urrqo48+UnR0tGbPnq2IiAiLZT744ANFRERo0qRJOnr0qEaNGqWff/5ZvXv3Tk8T2+zuYWEAAAAAAMDTLZernbqXcVYuV9vSsr6+vgoPDyeJnslIouORGzp0qFq0aKF27dqpXLlyOnbsmFasWKFs2bLZtH5oaKiWLFmilStXqmLFiqpSpYpGjx5tUyLcy8tL3377rapVq6ZSpUpp9erVWrx4sXLkyGFT3a6urlqxYoViY2NVsWJFvfzyy6pTp47Gjx9vXubNN99U0aJFVaFCBXl7eyfr1XyvF198Ue+99566deumMmXK6Pfff9cnn3xiUzz3K0+ePIqMjFRCQoJeeOEFlSxZUj179pSXl5c5UT58+HBVr15dTZo0Ud26dfX8888nG1t95MiRyp8/v6pXr642bdqod+/eFuOYOzo6auXKlcqVK5caNmyokiVLaujQobK3vzPm14PsS3t7ey1cuFDx8fGqWLGiOnXqpP79+0uyPhRM9uzZNXPmTC1btkwlS5bUnDlzFB4ebrFMs2bNNHbsWI0YMULBwcH6+uuvNW3aNNWsWdPW5gUAAAAAAMBTxGTcO0AwADyhIiMj9fzzz+vYsWMKCAjI7HBSdenSJXl6eiouLi5DHyILAABwvx7W/UlSuTtae6Q69isAAPifIhFxmR3CUy299z08WBTAE2vBggVyd3dX4cKFdezYMb377ruqVq3aY59ABwAAAAAAwJOD4VzwVJk1a5bc3d1TfAUHB2dKTF988YXVmBo0aPBAZZ88edJq2e7u7jp58mQGbcWjZ8u+vHz5srp27apixYqpffv2qlixohYtWpTJkQMAAAAAAOBpwnAueKpcvnxZZ86cSXFelixZbH6AaEaKjY1VbGxsivNcXFyUN2/e+y779u3bOnHihNX5/v7+cnB4Mn9w8jjuy4zEcC4AAOBxw3AuAAA8PhjO5eFiOBc80zw8POTh4ZHZYVjInj27smfP/lDKdnBwUGBg4EMpO7M9jvsSAAAAAAAAzx6GcwEAAAAAAAAAwAqS6AAAAAAAAAAAWEESHQAAAAAAAAAAK0iiAwAAAAAAAABgBUl0AAAAAAAAAACsIIkOAAAAAAAAAIAVJNEBAAAAAAAAALCCJDoAAAAAAAAAAFaQRAcAAAAAAAAAwAqS6AAAAAAAAAAAWOGQ2QEAAAAAAJ5+gZP/VtasWTM7DAAAgHSjJzoAAAAAAAAAAFaQRAcAAAAAAAAAwAqS6AAAAAAAAAAAWEESHQAAAAAAAAAAK0iiAwAAAAAAAABgBUl0AAAAAAAAAACsIIkOAAAAAAAAAIAVJNEBAAAAAAAAALCCJDoAAAAAAAAAAFY4ZHYAAPAsqzJkteyd3DI7DOCZtzc8NLNDAICn3rG388nd0ZTZYQBPvSIRcZkdAgA8deiJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWkEQHAAAAAAAAAMAKkugAAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDgAAAAAAAACAFSTRAQAAAAAAAACwgiQ6AAAAAAAAAABWkEQHAAAAAAAAAMAKkugAAAAAAAAAAFhBEh0AAAAAAAAAACtIogMAAAAAAAAAYAVJdAAAAAAAAAAArCCJDiDT1KxZUz179nygMiIiIuTl5ZUh8QAAAAAAAAD3IokOZLITJ07IZDIpKioqs0MBgGfGrcsXdGbdDN26fMFiekxMjMLDwxUTE5NJkQEAAKTP2auJ+irqus5eTUw2j3sbAMgYJNEBAMAz53Z8rM6tn6Xb8bEW02NiYjRw4ED+0QQAAE+Mc9cMjd99U+euGcnmcW8DABmDJDrwCCxfvlzPP/+8vLy8lCNHDjVu3FjR0dGSpIIFC0qSypYtK5PJpJo1a5rX++677xQUFCRnZ2cVK1ZMEydONM9L6sH+888/q1atWnJ1dVXp0qW1efPmDIv75s2b6tatm3x9feXs7Cw/Pz8NGTLEPP/ixYvq3LmzcufOLWdnZ5UoUUJLliyRJF24cEGtW7dW3rx55erqqpIlS2rOnDmp1nfjxg317t1befPmlZubmypXrqx169ZZLBMREaECBQrI1dVVL730ki5cuJByYSkIDw9XmTJlNHXqVBUoUEDu7u7q0qWLEhISNGzYMPn4+ChXrlwaPHiwxXomk0lff/21GjduLFdXVwUFBWnz5s06duyYatasKTc3N1WtWtW8T61t26VLlyxeADJfws3rSrhxxXxexsfHZ3ZIAPDE474HyBxXbxmKv2lYnHvc2wBAxiCJDjwCV65c0fvvv6/t27drzZo1srOz00svvaTExERt3bpVkrR69WrFxMTo559/liTNmjVLn376qQYPHqyDBw/qiy++0CeffKLp06dblN2/f3/17t1bUVFRKlKkiFq3bq3bt2+b55tMJkVERJjfR0REyGQy2RT3uHHj9Msvv+inn37S4cOHNWvWLPn7+0uSEhMT1aBBA0VGRmrmzJk6cOCAhg4dKnt7e0nS9evXVb58eS1dulT79u3TW2+9pXbt2pm3NyXdunXT5s2b9cMPP2jPnj1q2bKl6tevr6NHj0qS/vjjD73xxhvq1q2boqKiVKtWLX3++ec2bUuS6Oho/frrr1q+fLnmzJmjKVOmqFGjRvr777+1fv16ffnll/r444/1xx9/WKz32Wef6fXXX1dUVJSKFSumNm3aqHPnzurXr5+2b98uwzDUrVs3q/UOGTJEnp6e5lf+/PnTFTeAh+NExAc6OLSF+dwMCQnJ7JAA4InHfQ+QOV5bcVXl51y2OP+4twGAjOGQ2QEAz4IWLVpYvJ86daq8vb114MABeXt7S5Jy5MghHx8f8zIDBgzQyJEj1bx5c0l3eqwfOHBAX3/9tcLCwszL9e7dW40aNZIkDRw4UMHBwTp27JiKFSsmSSpatKg8PT3Ny3t6eqpo0aI2xX3y5EkVLlxYzz//vEwmk/z8/MzzVq9era1bt+rgwYMqUqSIJKlQoULm+Xnz5lXv3r3N7/+PvTsPr+nc3z9+byKR2ElMIaFIDYkgIoa2KDE20dIYipIirRqqZqnh1BCtoi1ajlOUStAYWlOdUmqKElVDBa0IUgQnqigaY0h+f/hlfW3JZse0De/Xde3rypqe9Vlrr7TLvZ48q1evXlq1apW++eYbPffcc9nuKyoqSsnJySpWrJhxbCtXrlRUVJRGjx6tiRMnKiQkRAMHDpQk+fj4aPPmzVq5cqVNxyPdCP9nzpwpV1dXVahQQfXr11diYqJWrFihXLlyydfXVx9//LHWr1+v559/3tjuzTffVJs2bSRJgwYNUs2aNTVs2DAFBwdLkvr06aM333zT6n6HDBmi/v37G9Pnz5/nH5TAI8A7/FM5e5bWliGNJEnx8fH8YxMA7hH3PYB9fB3sIr+CuVV26jFjHvc2AHB/EKIDD8GBAwc0fPhw/fLLLzp16pTS02+88CU5OVkVKlTIsv6FCxeUlJSkzp07q0uXLsb8a9euWQTiklS5cmXjZy8vL0nSyZMnjRB93759Fuu3aNFCLVq0sKnu8PBwNW7cWL6+vgoJCVHTpk310ksvSbpxM/bMM88YAfqtrl+/rtGjR+ubb77R8ePHdfXqVV25ckUuLi7Zrr9nzx5dv349S3tXrlxRoUKFJEkJCQlZaq9Zs2aOQnRvb2+5uroa00WLFlXu3LmVK1cui3knT5602O7m81y0aFFJkr+/v8W8y5cv6/z583Jzc8uyXycnJzk5OdlcJ4CHI7djXuV2ymf83prNZjtXBACPP+57APtwyWOS2dFk8e8R7m0A4P4gRAcegmbNmqlUqVKaPn26ihUrpvT0dFWqVElXr17Ndv3MceumT59u0RtakjFcSqY8efIYP2cO05IZ0t+rqlWr6tChQ/rhhx+0Zs0atWnTRo0aNdLChQvl7Ox8220//fRTTZw4UZ9//rn8/f2VL18+9e3b97bHnDt3bu3YsSPLMd7PG7+bz5d045xlN+/Wc5jdeX6Q5x7Ag+VgLiiPoDA5mAtazPfy8tKIESOMh5IAAACPOg9nk3oGOMrDOeuwndzbAMD9QYgOPGCnT59WYmKipk+frjp16kiSNm3aZCx3dHSUdKPndqaiRYuqWLFi+uOPPxQWFvZwC76Fm5ub2rZtq7Zt2+q1115TSEiIzpw5o8qVK+vYsWPav39/tr3R4+LiFBoaqjfeeEPSjXB5//792fa8l268WPX69es6efKkcZ5u5efnl2Ws8i1bttzjEQJ4GuVxLaSi9Tpkme/l5aXIyMiHXxAAAMBdKuKSS72q5M12Gfc2AHB/8GJR4AErUKCAChUqpC+//FIHDx7UunXrLMaILFKkiJydnbVy5Ur9+eefOnfunKQb45uPGTNGkyZN0v79+7Vnzx5FRUVpwoQJOdp/+fLltWTJEmN6yZIlxlAvdzJhwgTNmzdP+/bt0/79+/Xtt9/K09NT+fPnV1BQkOrWratWrVpp9erVRo/1zKFVypUrp9WrV2vz5s1KSEhQt27d9Oeff1rdl4+Pj8LCwtSxY0ctXrxYhw4d0tatWzVmzBgtX75cktS7d2+tXLlS48aN04EDBzR58uQcDeUCAAAAAAAA5BQhOvCA5cqVS/Pnz9eOHTtUqVIl9evXT59++qmx3MHBQZMmTdK0adNUrFgxhYaGSpLefvttzZgxQ1FRUfL391dQUJCio6P17LPP5mj/iYmJRjAvSefOnVNiYqJN27q6uuqTTz5R9erVVaNGDR0+fNh4AackLVq0SDVq1FC7du1UoUIFDRw40OhRP3ToUFWtWlXBwcGqV6+ePD091bx589vuLyoqSh07dtSAAQPk6+ur5s2ba9u2bSpZsqQk6YUXXtD06dM1ceJEBQQE6Mcff9TQoUNzdD4AAAAAAACAnDBlZGRk2LsIAHjanD9/Xu7u7vIbvEi5nfLZuxzgqbcnMtjeJQCA3WXen5w7dy7bF6Xfa7s72rnK7Jh1zGYA95dP9Lk7rwQAT7mc3vfQEx0AAAAAAAAAACsI0YGn2OjRo2U2m7P9NGnSxN7l5VjFihWtHk9MTIy9ywMAAAAAAMBjyMHeBQCwn+7du6tNmzbZLnN2dn7I1dy7FStWKC0tLdtlRYsWfcjVAAAAAAAA4ElAiA48xQoWLKiCBQvau4z7plSpUvYuAQAAAAAAAE8YhnMBAAAAAAAAAMAKQnQAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArCBEBwAAAAAAAADACkJ0AAAAAAAAAACsIEQHAAAAAAAAAMAKQnQAAAAAAAAAAKwgRAcAAAAAAAAAwAoHexcAAE+zLUMayc3Nzd5lAAAAPHBlpx7jvgcAADyW6IkOAAAAAAAAAIAVhOgAAAAAAAAAAFhBiA4AAAAAAAAAgBWE6AAAAAAAAAAAWEGIDgAAAAAAAACAFYToAAAAAAAAAABYQYgOAAAAAAAAAIAVhOgAAAAAAAAAAFhBiA4AAAAAAAAAgBWE6AAAAAAAAAAAWOFg7wIA4Gn2wpg1yu2Uz95lAI+UPZHB9i4BAPAAHOz+jMyOJnuXATwSfKLP2bsEAEAO0BMdAAAAAAAAAAArCNEBAAAAAAAAALCCEB0AAAAAAAAAACsI0QEAAAAAAAAAsIIQHQAAAAAAAAAAKwjRAQAAAAAAAACwghAdAAAAAAAAAAArCNEBAAAAAAAAALCCEB0AAAAAAAAAACsI0QEAAAAAAAAAsIIQHQAAAAAAAAAAKwjRAQAAAAAAAACwghAdAAAAAAAAAAArCNEBAAAAAAAAALCCEB0AAAAAAAAAACsI0QHYLCMjQ127dlXBggVlMpkUHx9/z22Gh4erefPmNq1br1499e3b9573+SB4e3vr888/t3cZAAAAAAAAuM8c7F0AgMfHypUrFR0drdjYWJUuXVqFCxe2d0kAAAAAAADAA0VPdAA2S0pKkpeXl2rVqiVPT085ODzez+GuXr1q7xIA3CLtn9OKjIxUfHy8IiMjlZKSYu+SAAAA7puTF9P17/jL3OsAwGOGEB2ATcLDw9WrVy8lJyfLZDLJ29tbERERatq0qbHO559/LpPJpJUrVxrzypYtqxkzZkiSrl+/rv79+yt//vwqVKiQBg4cqIyMjLuuafny5XJ3d1dMTIwk6ejRo2rTpo3y58+vggULKjQ0VIcPH7Y4hubNm+ujjz5SsWLF5Ovrq8OHD8tkMmnx4sWqX7++XFxcFBAQoJ9//tliX5s2bVKdOnXk7OysEiVKqHfv3rpw4cJd1w4ge9dSz2jkyJH6/fffNXLkSP5hCQAAnih/XcrQ5F1XudcBgMcMIToAm0ycOFEffPCBnnnmGaWkpGjbtm0KCgrSpk2bdP36dUnShg0bVLhwYcXGxkqSjh8/rqSkJNWrV0+SNH78eEVHR2vmzJnatGmTzpw5oyVLltxVPXPnzlW7du0UExOjsLAwpaWlKTg4WK6urtq4caPi4uJkNpsVEhJi0eN87dq1SkxM1OrVq/X9998b899//31FREQoPj5ePj4+ateuna5duybpRg/8kJAQtWrVSrt379aCBQu0adMm9ezZ0+Z6r1y5ovPnz1t8AFh36dIle5cAALhL3PcAd8a9DgA8XgjRAdjE3d1drq6uyp07tzw9PeXh4aE6deron3/+0c6dO5WRkaGffvpJAwYMMEL02NhYFS9eXGXLlpV0o6f6kCFD1LJlS/n5+Wnq1Klyd3fPcS3/+c9/1KNHD/33v/81esIvWLBA6enpmjFjhvz9/eXn56eoqCglJycb9UhSvnz5NGPGDFWsWFEVK1Y05kdEROiVV16Rj4+PRo4cqSNHjujgwYOSpDFjxigsLEx9+/ZVuXLlVKtWLU2aNEmzZ8/W5cuXbap5zJgxcnd3Nz4lSpTI8XEDT5MuXbrYuwQAwF3ivge4M+51AODxQogO4K7lz59fAQEBio2N1Z49e+To6KiuXbtq586dSk1N1YYNGxQUFCRJOnfunFJSUvT8888b2zs4OKh69eo52ufChQvVr18/rV692mhbknbt2qWDBw/K1dVVZrNZZrNZBQsW1OXLl5WUlGSs5+/vL0dHxyztVq5c2fjZy8tLknTy5Emj7ejoaKNds9ms4OBgpaen69ChQzbVPWTIEJ07d874HD16NEfHDTxtpk+fbu8SAAB3ifse4M641wGAx8vj/VZAAHZXr149xcbGysnJSUFBQSpYsKD8/Py0adMmbdiwQQMGDLiv+wsMDNSvv/6qmTNnqnr16jKZTJKk1NRUVatWzRgf/WYeHh7Gz/ny5cu23Tx58hg/Z7aZnp5utN2tWzf17t07y3YlS5a0qW4nJyc5OTnZtC4AydnZ2d4lAADuEvc9wJ1xrwMAjxdCdAD3JCgoSDNnzpSDg4NCQkIk3QjW582bp/379xvjobu7u8vLy0u//PKL6tatK0m6du2aduzYoapVq9q8vzJlymj8+PGqV6+ecufOrcmTJ0uSqlatqgULFqhIkSJyc3O7r8dYtWpV7d271xiWBsCD42AuqBEjRqhixYoaMWKE8ZchAAAATwIPZ5N6BjhyrwMAjxmGcwFwT+rWrat//vlH33//vRGY16tXTzExMfLy8pKPj4+xbp8+fTR27FgtXbpU+/btU48ePXT27Nkc79PHx0fr16/XokWL1LdvX0lSWFiYChcurNDQUG3cuFGHDh1SbGysevfurWPHjt3TMQ4aNEibN29Wz549FR8frwMHDui7777L0YtFAdgmj2shRUZGqkqVKoqMjOQflgAA4IlSxCWXelXJy70OADxmCNEB3JMCBQrI399fHh4eKl++vKQbwXp6errFmOWSNGDAAHXo0EGdOnVSzZo15erqqhYtWtzVfn19fbVu3TrNmzdPAwYMkIuLi3766SeVLFnSeHFp586ddfny5XvumV65cmVt2LBB+/fvV506dRQYGKjhw4erWLFi99QuAAAAAAAAHn2mjIyMDHsXAQBPm/Pnz8vd3V1+gxcpt1P247QDT6s9kcH2LgEAnkqZ9yfnzp27r8PjZba7o52rzI6m+9Yu8DjziT5n7xIA4KmW0/seeqIDAAAAAAAAAGAFIToAQ3Jyssxms9VPcnLyE7lvAAAAAAAAwBoHexcA4NFRrFgxxcfH33b5k7hvAAAAAAAAwBpCdAAGBwcHlS1b9qnbNwAAAAAAAGANw7kAAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVjjYuwAAeJptGdJIbm5u9i4DAADggSs79Rj3PQAA4LFET3QAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArCBEBwAAAAAAAADACkJ0AAAAAAAAAACsIEQHAAAAAAAAAMAKQnQAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArHCwdwEA8DR7Ycwa5XbKZ+8ygEfKnshge5cAAHgADnZ/RmZHk73LAB4JPtHn7F0CACAH6IkOAAAAAAAAAIAVhOgAAAAAAAAAAFhBiA4AAAAAAAAAgBWE6AAAAAAAAAAAWEGIDgAAAAAAAACAFYToAAAAAAAAAABYQYgOAAAAAAAAAIAVhOgAAAAAAAAAAFhBiA4AAAAAAAAAgBWE6AAAAAAAAAAAWEGIDgAAAAAAAACAFYToAAAAAAAAAABYQYgOAAAAAAAAAIAVhOgAAAAAAAAAAFhBiA4AAAAAAAAAgBWE6AAAAAAAAAAAWEGI/oiLjIxUlSpVjOnw8HA1b97cbvXk1K31Z84rWrSoTCaTli5del+OKTY2ViaTSWfPnr2ndh41mefoUZTdd3urw4cPy2QyKT4+/qHUBAAAAAAAANxvhOh4oCIiIrR27VpjOiEhQSNHjtS0adOUkpKiJk2aaOLEiYqOjrZfkdmoV6+e+vbtazHvQQb11gLpzHP0KLr1u31UH/A86CD/UX7QATyO0v45rcjISMXHxysyMlIpKSn2LgkAAOC+OXkxXf+Ov8y9DgA8ZgjR8UCZzWYVKlTImE5KSpIkhYaGytPTU05OTnJ3d1f+/PntVOGjLfMcPYpu/W4B4H64lnpGI0eO1O+//66RI0fyD0sAAPBE+etShibvusq9DgA8ZgjR7ezLL79UsWLFlJ6ebjE/NDRUb7311h23r1evnnr16qW+ffuqQIECKlq0qKZPn64LFy7ozTfflKurq8qWLasffvghR3Vl13v37NmzMplMio2NlfR/PbPXrl2r6tWry8XFRbVq1VJiYqKxzc09rCMjI9WsWTNJUq5cuWQymSRl7cGcnp6uMWPG6Nlnn5Wzs7MCAgK0cOFCi/pWrFghHx8fOTs7q379+jp8+LDNx3b69Gm1a9dOxYsXl4uLi/z9/TVv3jxjeXh4uDZs2KCJEyfKZDLJZDLp8OHDql+/viSpQIECMplMCg8Pt6neO52n6OhojRw5Urt27TL2l9kz/9Zeznv27FGDBg3k7OysQoUKqWvXrkpNTbWovXnz5ho3bpy8vLxUqFAhvfvuu0pLS7vjeZk8ebIqVapkTC9dulQmk0lTp0415jVq1EhDhw6VlPW7nTVrlr777jvjGDKvE0n6448/VL9+fbm4uCggIEA///zzHevJtGjRIlWsWFFOTk7y9vbW+PHjLZZn1xM8f/78xjl89tlnJUmBgYEymUyqV6+epP87VyNHjpSHh4fc3NzUvXt3Xb161WjH29tbn3/+uUXbVapUUWRkpLFcklq0aCGTyWRMZ+fKlSs6f/68xQeAdZcuXbJ3CQCAu8R9D3Bn3OsAwOOFEN3OWrdurdOnT2v9+vXGvDNnzmjlypUKCwuzqY1Zs2apcOHC2rp1q3r16qV33nlHrVu3Vq1atfTrr7/qpZdeUocOHXTx4kVjG29vbyMIlP4v6M1JGJ3p/fff1/jx47V9+3Y5ODhYDf8jIiIUFRUl6cYwJdaeuI8ZM0azZ8/W1KlT9fvvv6tfv3564403tGHDBknS0aNH1bJlSzVr1kzx8fF6++23NXjwYJvrvXz5sqpVq6bly5frt99+U9euXdWhQwdt3bpVkjRx4kTVrFlTXbp0MeosUaKEFi1aJElKTExUSkqKJk6caFO9dzpPbdu21YABA1SxYkVjf23bts1S94ULFxQcHKwCBQpo27Zt+vbbb7VmzRr17NnTYr3169crKSlJ69ev16xZsxQdHW3TcDlBQUHau3ev/vrrL0nShg0bVLhwYSMMT0tL088//2yE0DeLiIhQmzZtFBISYhxDrVq1LI49IiJC8fHx8vHxUbt27XTt2rU71rRjxw61adNGr7/+uvbs2aPIyEgNGzYsR8P/ZH6va9asUUpKihYvXmwsW7t2rRISEhQbG6t58+Zp8eLFGjlypM1tb9u2TZIUFRWllJQUYzo7Y8aMkbu7u/EpUaKEzfsBnkZdunSxdwkAgLvEfQ9wZ9zrAMDjhRDdzgoUKKAmTZpo7ty5xryFCxeqcOHCRs/nOwkICNDQoUNVrlw5DRkyRHnz5lXhwoXVpUsXlStXTsOHD9fp06e1e/duY5syZcqocOHCxrSLi4t8fX2VJ0+eHB/DRx99pKCgIFWoUEGDBw/W5s2bdfny5Szrmc1mY9gWT09PeXp6ZlnnypUrGj16tGbOnKng4GCVLl1a4eHheuONNzRt2jRJ0pQpU1SmTBmNHz9evr6+CgsLM3qF26J48eKKiIhQlSpVVLp0afXq1UshISH65ptvJEnu7u5ydHSUi4uLUWfu3LlVsGBBSVKRIkXk6ekpd3d3m+q903lydnaW2WyWg4ODsT9nZ+csdc+dO1eXL1/W7NmzValSJTVo0ECTJ0/WnDlz9OeffxrrFShQQJMnT1b58uXVtGlTvfLKKxZjl1tTqVIlFSxY0Aj/Y2NjNWDAAGN669atSktLswjHM5nNZjk7O8vJyck4BkdHR2N5RESEXnnlFfn4+GjkyJE6cuSIDh48eMeaJkyYoIYNG2rYsGHy8fFReHi4evbsqU8//fSO22by8PCQJBUqVEienp7G9yhJjo6OmjlzpipWrKhXXnlFH3zwgSZNmpTlL0Pu1Hb+/Pnl6elpTGdnyJAhOnfunPE5evSozccAPI2mT59u7xIAAHeJ+x7gzrjXAYDHCyH6IyAsLEyLFi3SlStXJEkxMTF6/fXXlSuXbV9P5cqVjZ9z586tQoUKyd/f35hXtGhRSdLJkyeNeWvXrrXowfzcc89p3759Kl68eI7rv3n/Xl5eWfaVEwcPHtTFixfVuHFjmc1m4zN79mxjPPWEhAQ9//zzFtvVrFnT5n1cv35dH374ofz9/VWwYEGZzWatWrVKycnJD6TeTPd6nhISEhQQEKB8+fIZ82rXrq309HSLIXQqVqyo3LlzW+zLlv2YTCbVrVtXsbGxOnv2rPbu3asePXroypUr2rdvnzZs2KAaNWrIxcXF5poz3e2xJyQkqHbt2hbzateurQMHDuj69es5ruNWAQEBFsdTs2ZNpaamPpB/6Dk5OcnNzc3iA8C67B4mAgAeD9z3AHfGvQ4APF4c7F0ApGbNmikjI0PLly9XjRo1tHHjRn322Wc2b39r73GTyWQxL3PscVt710oyAvyMjAxjnrVxte91XzfLHN97+fLlWQL9+/WCzU8//VQTJ07U559/Ln9/f+XLl099+/a1GAv7QdR7P8/T7WR3Pdi6n3r16unLL7/Uxo0bFRgYKDc3NyNY37Bhg4KCgu65pvt97CaTyeI6laxfqzmVK1euB9Y2gOw5mAtqxIgRqlixokaMGGE8eAMAAHgSeDib1DPAkXsdAHjMEKI/AvLmzauWLVsqJiZGBw8elK+vr6pWrWrXmjKHpUhJSVFgYKAkWbxk9EGpUKGCnJyclJycbDWw9fPz07JlyyzmbdmyxeZ9xMXFKTQ0VG+88YakG2Hu/v37VaFCBWMdR0fHLD2dM4cnuXm+LfXaIrv93crPz0/R0dG6cOGC0Rs9Li5OuXLlkq+v713v+2ZBQUHq27evvv32W2Ps83r16mnNmjWKi4vTgAED7ukYcsrPz09xcXEW8+Li4uTj42P0tvfw8LAYX//AgQMW4/9n971l2rVrly5dumT0AtmyZYvMZrMxbuetbZ8/f16HDh2yaCNPnjz3/biBp1ke10LGOzsyX14MAADwpCjikku9quSVT5Uq3OsAwGOE4VweEWFhYVq+fLlmzpxp8wtF70XDhg01efJkY3rr1q0qX768jh8/LunGn5a98MILGjt2rBISErRhwwYNHTr0gdfl6uqqiIgI9evXT7NmzVJSUpJ+/fVX/fvf/9asWbMkSd27d9eBAwf03nvvKTExUXPnzs3RiybLlSun1atXa/PmzUpISFC3bt0sxhSXbrx49ZdfftHhw4d16tQppaenq1SpUjKZTPr+++/1119/KTU11aZ6beHt7a1Dhw4pPj5ep06dMob2uVlYWJjy5s2rTp066bffftP69evVq1cvdejQwRiy515VrlxZBQoU0Ny5cy1C9KVLl+rKlStZhla59Rh2796txMREnTp16r702B4wYIDWrl2rDz/8UPv379esWbM0efJkRUREGOtkjg2/c+dObd++Xd27d7fo+V6kSBE5Oztr5cqV+vPPP3Xu3Dlj2dWrV9W5c2ft3btXK1as0IgRI9SzZ0/jLzEaNGigOXPmaOPGjdqzZ486depkMVRO5nGvXbtWJ06c0N9//33PxwwAAAAAAIBHCyH6I6JBgwYqWLCgEhMT1b59+we+v6SkJJ06dcqYvnjxohITEy2Cz5kzZ+ratWuqVq2a+vbtq1GjRj3wuiTpww8/1LBhwzRmzBj5+fkpJCREy5cv17PPPitJKlmypBYtWqSlS5cqICBAU6dO1ejRo21uf+jQoapataqCg4NVr149eXp6qnnz5hbrREREKHfu3KpQoYI8PDyUnJys4sWLa+TIkRo8eLCKFi1qjCl/p3pt0apVK4WEhKh+/fry8PDQvHnzsqzj4uKiVatW6cyZM6pRo4Zee+21LA9D7pXJZFKdOnVkMpn04osvSroRrLu5ual69eoW47HfqkuXLvL19VX16tXl4eGRpQf53ahataq++eYbzZ8/X5UqVdLw4cP1wQcfWLxIdvz48SpRooTq1Kmj9u3bKyIiwmKccwcHB02aNEnTpk1TsWLFFBoaaixr2LChypUrp7p166pt27Z69dVXjR6w0o2XYgUFBRkvaG3evLnKlCljUeP48eO1evVqlShRwvirDQAAAAAAADw5TBm3DvgLAE+B8PBwnT17VkuXLrXL/s+fPy93d3f5DV6k3E7WH04AT6M9kcH2LgEAnkqZ9yfnzp27ry8DzWx3RztXmR1N961d4HHmE33uzisBAB6YnN730BMdAAAAAAAAAAArCNHxxGnSpInMZnO2n5wM+/Kk2bhxo9XzYjab7VIT3xUAAAAAAAAedQ72LgC432bMmKFLly5lu6xgwYIPuZpHR/Xq1RUfH2/vMizY87vKyctoAQAAAAAA8PQiRMcTp3jx4vYu4ZHk7OyssmXL2rsMC3xXAAAAAAAAeNQxnAsAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVjjYuwAAeJptGdJIbm5u9i4DAADggSs79Rj3PQAA4LFET3QAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArCBEBwAAAAAAAADACkJ0AAAAAAAAAACsIEQHAAAAAAAAAMAKQnQAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArCBEBwAAAAAAAADACgd7FwAAT7MXxqxRbqd89i4DuK09kcH2LgEA8AQ42P0ZmR1N9i4DuCOf6HP2LgEA8IihJzoAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVjwSIbrJZNLSpUutLj98+LBMJpPi4+MfWk33252O8XFUr1499e3b96HtLzw8XM2bN3/o+791v0+DixcvqlWrVnJzc5PJZNLZs2ftXdI9eRJ//wAAAAAAAPBwPBIhekpKipo0aWLvMh4bkZGRqlKlSpb5DyoojI2NzTZIXbx4sT788MP7vr/7oXv37jKZTPr888/vua2JEycqOjra5vWPHj2qt956S8WKFZOjo6NKlSqlPn366PTp0xbrZfcQYOLEiXJyctL8+fPl7++v7t27Z7uPOXPmyMnJSadOncrp4dhk1qxZ2rhxozZv3qyUlBS5u7s/kP1I0k8//aRmzZqpWLFit72GExIS9Oqrr8rd3V358uVTjRo1lJyc/MDqAgAAAAAAAKRHJET39PSUk5OTvctADhUsWFCurq72LiOLJUuWaMuWLSpWrNh9ac/d3V358+e3ad0//vhD1atX14EDBzRv3jwdPHhQU6dO1dq1a1WzZk2dOXPG6rYjRozQv/71L3333Xd6/fXX1blzZ82fP1+XLl3Ksm5UVJReffVVFS5c+G4P67aSkpLk5+enSpUqydPTUyaT6YHsR5IuXLiggIAA/ec//7ltPS+++KLKly+v2NhY7d69W8OGDVPevHkfWF0AbriUclD16tV7rP8aDAAA4E5OXkzXv+Mv6+TFdKWkpCgyMlIpKSn2LgsA8Ii4pxD9yy+/VLFixZSenm4xPzQ0VG+99ZYxPWXKFJUpU0aOjo7y9fXVnDlzLNa/tffp1q1bFRgYqLx586p69erauXPnHWvx9vbWhx9+qHbt2ilfvnwqXrx4llBuwoQJ8vf3V758+VSiRAn16NFDqampFutMnz5dJUqUkIuLi1q0aKEJEyZkCVC/++47Va1aVXnz5lXp0qU1cuRIXbt2zVh+4MAB1a1bV3nz5lWFChW0evXqO9Z/s0GDBsnHx0cuLi4qXbq0hg0bprS0NElSdHS0Ro4cqV27dslkMslkMik6Olre3t6SpBYtWshkMhnTttRrMpk0Y8YMtWjRQi4uLipXrpyWLVsm6cZQOvXr15ckFShQQCaTSeHh4ZKy9qT++++/1bFjRxUoUEAuLi5q0qSJDhw4YCyPjo5W/vz5tWrVKvn5+clsNiskJOS+3pgcP35cvXr1UkxMjPLkyWOxLHNYoG+++UZ16tSRs7OzatSoof3792vbtm2qXr26zGazmjRpor/++svYLifDubz77rtydHTUjz/+qKCgIJUsWVJNmjTRmjVrdPz4cb3//vtZtsnIyFCvXr00adIkrV69WiEhIZKkN954Q5cuXdKiRYss1j906JBiY2PVuXPnO9aTec6///57+fr6ysXFRa+99pouXryoWbNmydvbWwUKFFDv3r11/fp1STe+1/Hjx+unn36SyWRSvXr1JN34HRs1apQ6duwos9msUqVKadmyZfrrr78UGhoqs9msypUra/v27cb+T58+rXbt2ql48eJycXGRv7+/5s2bZ1FjkyZNNGrUKLVo0cLqcbz//vt6+eWX9cknnygwMFBlypTRq6++qiJFitzxHGRnxIgR8vLy0u7duyVJmzZtMq6JEiVKqHfv3rpw4cJdtQ08aa6cStaGDRv0+++/27sUAACAB+avSxmavOuq/rqUoZSUFI0cOZIQHQBguKcQvXXr1jp9+rTWr19vzDtz5oxWrlypsLAwSTd6Bffp00cDBgzQb7/9pm7duunNN9+02OZmqampatq0qSpUqKAdO3YoMjJSERERNtXz6aefKiAgQDt37tTgwYPVp08fiwA7V65cmjRpkn7//XfNmjVL69at08CBA43lcXFx6t69u/r06aP4+Hg1btxYH330kcU+Nm7cqI4dO6pPnz7au3evpk2bpujoaGO99PR0tWzZUo6Ojvrll180depUDRo0yLYT+v+5uroqOjpae/fu1cSJEzV9+nR99tlnkqS2bdtqwIABqlixolJSUpSSkqK2bdtq27Ztkm70UE5JSTGm71RvppEjR6pNmzbavXu3Xn75ZYWFhenMmTMqUaKEEeImJiYqJSVFEydOzLbu8PBwbd++XcuWLdPPP/+sjIwMvfzyy8YDAOnGWNvjxo3TnDlz9NNPPyk5Odnm7/dO0tPT1aFDB7333nuqWLGi1fVGjBihoUOH6tdff5WDg4Pat2+vgQMHauLEidq4caMOHjyo4cOH53j/Z86c0apVq9SjRw85OztbLPP09FRYWJgWLFigjIwMY/61a9f0xhtvaOHChdqwYYNq1aplLCtcuLBCQ0M1c+ZMi7aio6P1zDPP6KWXXrKprosXL2rSpEmaP3++Vq5cqdjYWLVo0UIrVqzQihUrNGfOHE2bNk0LFy6UdGOYni5duqhmzZpKSUnR4sWLjbY+++wz1a5dWzt37tQrr7yiDh06qGPHjnrjjTf066+/qkyZMurYsaNxjJcvX1a1atW0fPly/fbbb+ratas6dOigrVu32nxe09PTtXz5cvn4+Cg4OFhFihTR888/f1dDF2U+sJg9e7Y2btyoypUrKykpSSEhIWrVqpV2796tBQsWaNOmTerZs2eO27+dK1eu6Pz58xYfAACAJxH3PXicXUzLyNLZDgCAewrRCxQooCZNmmju3LnGvIULF6pw4cJG7+Vx48YpPDxcPXr0kI+Pj/r376+WLVtq3Lhx2bY5d+5cpaen66uvvlLFihXVtGlTvffeezbVU7t2bQ0ePFg+Pj7q1auXXnvtNSN8lqS+ffuqfv368vb2VoMGDTRq1Ch98803xvJ///vfatKkiSIiIuTj46MePXpkGat95MiRGjx4sDp16qTSpUurcePG+vDDDzVt2jRJ0po1a7Rv3z7Nnj1bAQEBqlu3rkaPHm3bCf3/hg4dqlq1asnb21vNmjVTRESEUaezs7PMZrMcHBzk6ekpT09POTs7y8PDQ5KUP39+eXp6GtN3qjdTeHi42rVrp7Jly2r06NFKTU3V1q1blTt3bhUsWFCSVKRIEXl6emY7PvaBAwe0bNkyzZgxQ3Xq1FFAQIBiYmJ0/Phxi7AzLS1NU6dOVfXq1VW1alX17NlTa9euzdH5sebjjz+Wg4ODevfufdv1IiIiFBwcLD8/P/Xp00c7duzQsGHDVLt2bQUGBqpz585WH/LczoEDB5SRkSE/P79sl/v5+envv/+26OU+ffp0LVy4UOvXr1flypWzbNO5c2fFxsbq0KFDkm6EwLNmzVKnTp2UK5dtv75paWmaMmWKAgMDVbduXb322mvatGmTvvrqK1WoUEFNmzZV/fr1jWMuWLCgXFxc5OjoKE9PT+P7l6SXX35Z3bp1U7ly5TR8+HCdP39eNWrUUOvWreXj46NBgwYpISFBf/75pySpePHiioiIUJUqVVS6dGn16tVLISEhFr93d3Ly5EmlpqZq7NixCgkJ0Y8//qgWLVqoZcuW2rBhg83tZD6wWLt2rTZt2qSyZctKksaMGaOwsDD17dtX5cqVU61atTRp0iTNnj1bly9ftrn9OxkzZozc3d2NT4kSJe5b2wAAAI8S7nvwOHtj1UUFBQXZuwwAwCPmnsdEDwsL06JFi3TlyhVJUkxMjF5//XUj4EtISFDt2rUttqldu7YSEhKybS8hIUGVK1e2GOu4Zs2aNtVy63o1a9a02M+aNWvUsGFDFS9eXK6ururQoYNOnz6tixcvSrrR0/q5556zaOPW6V27dumDDz6Q2Ww2Pl26dFFKSoouXryohIQElShRwmI8blvrz7RgwQLVrl1bnp6eMpvNGjp06F2/QPFO9Wa6OcDNly+f3NzcdPLkSZv3k5CQIAcHBz3//PPGvEKFCsnX19fiO3BxcVGZMmWMaS8vrxztx5odO3YYLwC90/jdNx9r0aJFJUn+/v4W8+6lppt7mmfH0dHR+PnFF1+U2WzWsGHDLIbYydS4cWM988wzioqKkiStXbtWycnJevPNN22u59ZzXrRoUXl7e8tsNlvMs+WYbTl3koy2rl+/rg8//FD+/v4qWLCgzGazVq1alaPrOXO4qNDQUPXr109VqlTR4MGD1bRpU02dOtXmdvr166dffvlFP/30k4oXL27M37Vrl6Kjoy1+R4KDg5Wenm48vLgfhgwZonPnzhmfo0eP3re2AQAAHiXc9+Bx9nWwS4466wAAng73HKI3a9ZMGRkZWr58uY4ePaqNGzcaQ7k8Sg4fPqymTZuqcuXKWrRokXbs2GGMmX716lWb20lNTdXIkSMVHx9vfPbs2aMDBw7cl5cc/vzzzwoLC9PLL7+s77//Xjt37tT777+foxrvpt5bxw83mUxZxrq/H7Lbz51CZ1ts3LhRJ0+eVMmSJeXg4CAHBwcdOXJEAwYMsBgf/tYaMgP3W+fdzbGXLVtWJpPptg+IPDw8LMbY9/f319q1a7V+/Xq1bds2S5CeK1cuhYeHa9asWUpPT1dUVJTq16+v0qVL21xXduf8br9vW86d9H/B96effqqJEydq0KBBWr9+veLj4xUcHJyj67lw4cJycHBQhQoVLOb7+fnlKIxv3Lixjh8/rlWrVlnMT01NVbdu3Sx+R3bt2qUDBw5YPHy4V05OTnJzc7P4AAAAPIm478HjzCWPyaLDEQAAkuRwrw3kzZtXLVu2VExMjA4ePChfX19VrVrVWO7n56e4uDh16tTJmBcXF5clELt5/Tlz5ujy5ctGyLtlyxabarl1vS1bthhDa+zYsUPp6ekaP3680Uv+1iElfH19jbHEM906XbVqVSUmJhpDQWRX/9GjR5WSkiIvL68c1S9JmzdvVqlSpSxeQHnkyBGLdRwdHY2XQN4sT548WebfqV5bZPaczm6fmfz8/HTt2jX98ssvxrjep0+fVmJiotXv+n7q0KGDGjVqZDEvODhYHTp0yFGv7XtRqFAhNW7cWF988YX69etnMS76iRMnFBMTo3fffTfLdlWqVNHatWvVqFEjtWnTRgsWLLAIpt98802NGjVKixcv1pIlSzRjxoyHcjz3Q1xcnEJDQ/XGG29IuhGu79+/P0fXhKOjo2rUqKHExESL+fv371epUqVsbufVV19Vs2bN1L59e+XOnVuvv/66pBu/I3v37r2n3xHgSeZUuKSCgoJu+64JAACAx52Hs0k9Axzl4WySl5eXRowYYfybHgCAe+6JLt0Y0mX58uWaOXNmll7o7733nqKjozVlyhQdOHBAEyZM0OLFi62+TLJ9+/YymUzq0qWL9u7dqxUrVlgdP/1WcXFx+uSTT7R//3795z//0bfffqs+ffpIutFLOC0tTf/+97/1xx9/aM6cOVmGgujVq5dWrFihCRMm6MCBA5o2bZp++OEHi+FBhg8frtmzZ2vkyJH6/ffflZCQoPnz52vo0KGSpEaNGsnHx0edOnXSrl27tHHjRotA/E7KlSun5ORkzZ8/X0lJSZo0aZKWLFlisY63t7cOHTqk+Ph4nTp1yhhKx9vbW2vXrtWJEyf0999/21SvLUqVKiWTyaTvv/9ef/31V7YvWSlXrpxCQ0PVpUsXbdq0Sbt27dIbb7yh4sWLKzQ01OZ93a1ChQqpUqVKFp88efLI09NTvr6+D3z/mSZPnqwrV64oODhYP/30k44ePaqVK1eqcePG8vHxsfrC0oCAAK1bt06bNm1SmzZtLF7G+uyzz6pBgwbq2rWrnJyc1LJly4d1OPesXLlyWr16tTZv3qyEhAR169bNGC89U2pqqtEDXJJxbd/cy/y9997TggULNH36dB08eFCTJ0/Wf//7X/Xo0SNH9bRo0UJz5szRm2++abxIddCgQdq8ebN69uyp+Ph4HThwQN99953Fi0WHDBmijh07GtNbt25V+fLldfz4cWNew4YNNXny5BzVAzwOnL3KKjY2VlWqVLF3KQAAAA9MEZdc6lUlr4q45JKXl5ciIyMJ0QEAhvsSojdo0EAFCxZUYmKi2rdvb7GsefPmmjhxosaNG6eKFStq2rRpioqKUr169bJty2w267///a/27NmjwMBAvf/++/r4449tqmPAgAHavn27AgMDNWrUKE2YMEHBwcGSboSUEyZM0Mcff6xKlSopJiZGY8aMsdi+du3amjp1qiZMmKCAgACtXLlS/fr1sxj2JDg4WN9//71+/PFH1ahRQy+88II+++wzo0dsrly5tGTJEl26dEnPPfec3n77bX300Ue2nkq9+uqr6tevn3r27KkqVapo8+bNGjZsmMU6rVq1UkhIiOrXry8PDw/NmzdPkjR+/HitXr1aJUqUUGBgoE312qJ48eLGC0qLFi1qES7eLCoqStWqVVPTpk1Vs2ZNZWRkaMWKFVmGDnmSlStXTtu2bVPp0qXVpk0blSpVSk2aNJGPj4/i4uJu+2eB/v7+WrdunTZv3qzWrVtbDHnSuXNn/f3332rfvv19GTboYRk6dKiqVq2q4OBg1atXT56enmrevLnFOpm/s5nXbP/+/RUYGGjxwKFFixaaOnWqPvnkE/n7+2vGjBlatGiRXnzxxRzX9Nprr2nWrFnq0KGDFi9erMqVK2vDhg3av3+/6tSpY+z75vcapKSkWIT6Fy9eVGJiosXDjqSkJJ06dSrH9QAAAAAAAODRZsq4HwNSPwK8vb3Vt29f9e3b976226VLF+3bt08bN268r+3i6TFixAhNmDBBq1ev1gsvvGDvcvCIOH/+vNzd3eU3eJFyO+WzdznAbe2JDLZ3CQCAhyDz/uTcuXP3dRzzzHZ3tHOV2dF05w0AO/OJPmfvEgAAD1hO73vueUz0J824cePUuHFj5cuXTz/88INmzZqlL774wt5l4TE2cuRIeXt7a8uWLXruueeMMfkBAAAAAAAAPPpI826xdetWNW7cWP7+/po6daomTZqkt99++761P3r0aJnN5mw/TZo0uW/7eRxZOy9ms/mR+EuA5OTk29Z483Aft3rzzTfVt2/f+x6gN2nSxGo9o0ePvq/7elTFxMRYPQe8CBEAAAAAAAD36onpiX748OH70s4333xzX9qxpnv37mrTpk22y5ydnR/ovh91mS+WzE7x4sUfXiFWFCtW7LY13jyG9sMyY8YMXbp0KdtlBQsWfMjV2Merr76q559/PttlT9N4/AAAAAAAAHgwnpgQ/XFRsGDBpybczKmyZcvau4TbcnBweORqfBQeLtibq6urXF1d7V0GAAAAAAAAnlAM5wIAAAAAAAAAgBWE6AAAAAAAAAAAWEGIDgAAAAAAAACAFYToAAAAAAAAAABYQYgOAAAAAAAAAIAVhOgAAAAAAAAAAFhBiA4AAAAAAAAAgBWE6AAAAAAAAAAAWEGIDgAAAAAAAACAFYToAAAAAAAAAABY4WDvAgDgabZlSCO5ubnZuwwAAIAHruzUY9z3AACAxxI90QEAAAAAAAAAsIIQHQAAAAAAAAAAKwjRAQAAAAAAAACwghAdAAAAAAAAAAArCNEBAAAAAAAAALCCEB0AAAAAAAAAACsI0QEAAAAAAAAAsIIQHQAAAAAAAAAAKwjRAQAAAAAAAACwwsHeBQDA0+yFMWuU2ymfvcsAnjp7IoPtXQIAAAAA4DFBT3QAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArCBEBwAAAAAAAADACkJ0AAAAAAAAAACsIEQHAAAAAAAAAMAKQnQAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArCBEBwAAAAAAAADACkJ0AAAAAAAAAACsIEQHAAAAAAAAAMAKQnQAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArCBEBwAAAAAAAADAiicqRDeZTFq6dKnV5YcPH5bJZFJ8fPxd7yM8PFzNmzc3puvVq6e+ffvedXtPi9jYWJlMJp09e/a+tXnrd/G4eFzrBgAAAAAAAJ5GT1SInpKSoiZNmti7DDwkEydOVHR0tL3LeKylpaVp0KBB8vf3V758+VSsWDF17NhR//vf/2xu404PrwDAHtL+Oa0/Y+co7Z/T9i7FqpSUFEVGRiolJcXepQDAQ7F79257lwAAAHBXnqgQ3dPTU05OTvYu45Fw9epVe5fwwLm7uyt//vx22feTcn4vXryoX3/9VcOGDdOvv/6qxYsXKzExUa+++qq9S7svrl69qhMnTti7DAB2cC31jP7aEKNrqWfsXYpVKSkpGjlyJCE6gKdGQkKCvUsAAAC4K49EiP7ll1+qWLFiSk9Pt5gfGhqqt956y5ieMmWKypQpI0dHR/n6+mrOnDkW69/aI3br1q0KDAxU3rx5Vb16de3cufO2dfzrX//S888/n2V+QECAPvjgA5uOxdvbW6NGjVLHjh1lNptVqlQpLVu2TH/99ZdCQ0NlNptVuXJlbd++3ab2bnbs2DG1a9dOBQsWVL58+VS9enX98ssvkqTIyEhVqVJFM2bM0LPPPqu8efNKkpKTk439urm5qU2bNvrzzz+NNnft2qX69evL1dVVbm5uqlatmlHbkSNH1KxZMxUoUED58uVTxYoVtWLFCptqXbFihXx8fOTs7Kz69evr8OHDWdbZtGmT6tSpI2dnZ5UoUUK9e/fWhQsXJNn2Xdw6LEp6ero++eQTlS1bVk5OTipZsqQ++ugjY/nRo0fVpk0b5c+fXwULFlRoaGi2dWUnc18fffSRihUrJl9fX5vavH79uvr376/8+fOrUKFCGjhwoDIyMiza9vb21ueff24xr0qVKoqMjDSmz549q27duqlo0aLKmzevKlWqpO+//96mc3k77u7uWr16tdq0aSNfX1+98MILmjx5snbs2KHk5GRJN4Lonj17ysvLS3nz5lWpUqU0ZswYo3ZJatGihUwmkzGdlJSk0NBQFS1aVGazWTVq1NCaNWss9p2SkqJXXnlFzs7OevbZZzV37tws5+Ls2bN6++235eHhITc3NzVo0EC7du2643Ht2LFDvXr1UrFixbRgwYI7rv8wXLlyRefPn7f4AHjwrl+9rOtXLmT53Pr7aI9PamqqvU8PADwQ3PcAAIAnzSMRordu3VqnT5/W+vXrjXlnzpzRypUrFRYWJklasmSJ+vTpowEDBui3335Tt27d9Oabb1psc7PU1FQ1bdpUFSpU0I4dOxQZGamIiIjb1hEWFqatW7cqKSnJmPf7779r9+7dat++vc3H89lnn6l27drauXOnXnnlFXXo0EEdO3bUG2+8oV9//VVlypRRx44dLcJUk8lkMTRJdHS0TCaTxfEEBQXp+PHjWrZsmXbt2qWBAwdaPHg4ePCgFi1apMWLFys+Pl7p6ekKDQ3VmTNntGHDBq1evVp//PGH2rZta3HMzzzzjLZt26YdO3Zo8ODBypMnjyTp3Xff1ZUrV/TTTz9pz549+vjjj2U2m+94/EePHlXLli3VrFkzxcfH6+2339bgwYMt1klKSlJISIhatWql3bt3a8GCBdq0aZN69uxp1JXT72LIkCEaO3ashg0bpr1792ru3LkqWrSopBvDlgQHB8vV1VUbN25UXFyczGazQkJCbO5VvnbtWiUmJmr16tX6/vvvbWpz/Pjxio6O1syZM7Vp0yadOXNGS5YssWl/mdLT09WkSRPFxcXp66+/1t69ezV27Fjlzp3bpnOZU+fOnZPJZDJ6+U+aNEnLli3TN998o8TERMXExBhh+bZt2yRJUVFRSklJMaZTU1P18ssva+3atdq5c6dCQkLUrFkzI5iXZAwbExsbq0WLFunLL7/UyZMnLWpp3bq1Tp48qR9++EE7duxQ1apV1bBhQ505k7VnaUpKij799FNVqlRJtWrV0vHjxzVjxgz16NHjrs7D/TZmzBi5u7sbnxIlSti7JOCpcDj6PSWMbZXlc/Pvo70+QUFB9j49APBAcN8DAACeNA72LkCSChQooCZNmmju3Llq2LChJGnhwoUqXLiw6tevL0kaN26cwsPDjUCsf//+2rJli8aNG2esc7O5c+cqPT1dX331lfLmzauKFSvq2LFjeuedd6zWUbFiRQUEBGju3LkaNmyYJCkmJkbPP/+8ypYta/PxvPzyy+rWrZskafjw4ZoyZYpq1Kih1q1bS5IGDRqkmjVr6s8//5Snp6ckydfXV+7u7kYb7u7uRm/nzOP566+/tG3bNhUsWFCSstR09epVzZ49Wx4eHpKk1atXa8+ePTp06JBx4zp79mxVrFhR27ZtU40aNZScnKz33ntP5cuXlySVK1fOaC85OVmtWrWSv7+/JKl06dI2HX/mXwyMHz/eOLbMED7TmDFjFBYWZryUtVy5cpo0aZKCgoI0ZcqUHH8X//zzjyZOnKjJkyerU6dOkqQyZcroxRdflCQtWLBA6enpmjFjhvFwIioqSvnz51dsbKxeeumlOx5Xvnz5NGPGDDk6OkqSvv766zu2+fnnn2vIkCFq2bKlJGnq1KlatWqVTecx05o1a7R161YlJCTIx8dHkuV3cadzmflXCba4fPmyBg0apHbt2snNzU3SjeugXLlyevHFF2UymVSqVClj/cxrLX/+/Ma1LN34i4GAgABj+sMPP9SSJUu0bNky9ezZU/v27dOaNWu0bds2Va9eXZI0Y8YMi+tv06ZN2rp1q06ePGkM0zRu3DgtXbpUCxcuVNeuXXX16lUtWbJEs2bN0urVq1W9enW9++67ev3111WgQAGbj/thGDJkiPr3729Mnz9/nn9QAg+Bd/incvbM+v+vLUMa2aEaS/Hx8QTpAJ5I3PcAAIAnzSMRoks3eh536dJFX3zxhZycnBQTE6PXX39duXLd6CyfkJCgrl27WmxTu3ZtTZw4Mdv2EhISVLlyZYsAsWbNmjbVMXPmTA0bNkwZGRmaN2+exQ2gLSpXrmz8nNkTOjOIvnneyZMnjeBx3759Fm20aNFCLVq0MKbj4+MVGBhoBOjZKVWqlBFqSjfOQYkSJSxuWCtUqKD8+fMrISFBNWrUUP/+/fX2229rzpw5atSokVq3bq0yZcpIknr37q133nlHP/74oxo1aqRWrVpZHJs1CQkJWYZiufXc79q1S7t371ZMTIwxLyMjQ+np6Tp06JD8/Pxy9F0kJCToypUrxkOYW+3atUsHDx6Uq6urxfzLly9b9Ha/HX9/fyNAt6XNc+fOKSUlxeJcODg4qHr16lmGdLmd+Ph4PfPMM0aAfitbzqUt0tLS1KZNG2VkZGjKlCnG/PDwcDVu3Fi+vr4KCQlR06ZN7/jQITU1VZGRkVq+fLlSUlJ07do1Xbp0yeiJnpiYKAcHB1WtWtXYpmzZshbB965du5SamqpChQpZtH3p0iXjO9u8ebNef/11lShRQuvWrVOdOnVsOlZ7cHJy4p0NgB3kdsyr3E75sszPfFBoT7b8dRcAPI647wEAAE+aRyZEb9asmTIyMrR8+XLVqFFDGzdu1GefffbQ62jXrp0GDRqkX3/9VZcuXdLRo0cthj+xReZwKJKMHsrZzbt1DPjbcXZ2vuM6+fJlDQnuJDIyUu3bt9fy5cv1ww8/aMSIEZo/f75atGiht99+W8HBwVq+fLl+/PFHjRkzRuPHj1evXr1yvJ9bpaamqlu3burdu3eWZSVLlpSUs+/iTucnNTVV1apVswiaM9384OF2bj2/96NNScqVK1eWUD0tLc342ZZju9O5vJPMAP3IkSNat26dRbhUtWpVHTp0SD/88IPWrFmjNm3aqFGjRlq4cKHV9iIiIrR69WqNGzdOZcuWlbOzs1577bUcvZA1NTVVXl5eio2NzbIsc6iZ5557TtOnT9esWbPUoEEDNWrUSB06dFDz5s3l4uJi874APHkczAXlERQmB7P1h8/25uXlpREjRsjLy8vepQDAQ2Fr5w4AAIBHzSMxJrok5c2bVy1btlRMTIzmzZsnX19fi16qfn5+iouLs9gmLi5OFSpUyLY9Pz8/7d69W5cvXzbmbdmy5Y51PPPMMwoKClJMTIxiYmLUuHFjFSlS5C6P6v6pXLmy4uPjsx0L2ho/Pz8dPXpUR48eNebt3btXZ8+etThvPj4+6tevn3788Ue1bNlSUVFRxrISJUqoe/fuWrx4sQYMGKDp06fbtN+tW7dazLv13FetWlV79+5V2bJls3wye3vn5LsoV66cnJ2dtXbt2myXV61aVQcOHFCRIkWy7O/mYXRy4k5turu7y8vLy3j5qyRdu3ZNO3bssGjHw8NDKSkpxvT58+d16NAhY7py5co6duyY9u/fb7WOO53L28kM0A8cOKA1a9Zk6fkt3eix2bZtW02fPl0LFizQokWLjGsxT548un79usX6cXFxCg8PV4sWLeTv7y9PT0+LF676+vrq2rVrFi/7PXjwoP7++2+L4zpx4oQcHByyHFfhwoUlSS4uLnr77be1ceNG7du3TzVq1ND7778vT09Pvfnmm1q3bl2OHlYBeHLkcS2kovU6KI9r1v+mPSq8vLwUGRlJiA7gqWHLX7UCAAA8ih6ZEF26MZTK8uXLNXPmTOOFopnee+89RUdHa8qUKTpw4IAmTJigxYsXW31ZaPv27WUymdSlSxft3btXK1as0Lhx42yuY/78+fr222+z1PGglC9f3uKFk0uWLDHGKZdu9Mr29PRU8+bNFRcXpz/++EOLFi3Szz//bLXNRo0ayd/fX2FhYfr111+1detWdezYUUFBQapevbouXbqknj17KjY2VkeOHFFcXJy2bdtm9BDp27evVq1apUOHDunXX3/V+vXrbeo90r17dx04cEDvvfeeEhMTNXfuXIuXpko3xoXfvHmzevbsqfj4eB04cEDfffddlpdh2vpd5M2bV4MGDdLAgQM1e/ZsJSUlacuWLfrqq6+MdgoXLqzQ0FBt3LhRhw4dUmxsrHr37q1jx47d8ZiyY0ubffr00dixY7V06VLt27dPPXr00NmzZy3aadCggebMmaONGzdqz5496tSpk/HSUEkKCgpS3bp11apVK61evdroFb5y5cocncvspKWl6bXXXtP27dsVExOj69ev68SJEzpx4oTRa3zChAmaN2+e9u3bp/379+vbb7+Vp6en0Rvc29tba9eu1YkTJ4wQvFy5csYLbnft2qX27dtbhNnly5dXo0aN1LVrV23dulU7d+5U165d5ezsbPylRqNGjVSzZk01b95cP/74ow4fPqzNmzfr/fff1/bt27McS5kyZfTBBx/ojz/+0LJly5SRkaHQ0FD95z//sfEbtW7IkCHq2LGjMb1161aVL19ex48fN+Y1bNhQkydPvud9AQAAAAAA4NHySIXoDRo0UMGCBZWYmKj27dtbLGvevLkmTpyocePGqWLFipo2bZqioqJUr169bNsym83673//qz179igwMFDvv/++xYstb+e1117T6dOndfHiRTVv3vwej8o2iYmJOnfunDF97tw5JSYmGtOOjo768ccfVaRIEb388svy9/fX2LFjLcLWW5lMJn333XcqUKCA6tatq0aNGql06dJasGCBJCl37tw6ffq0OnbsKB8fH7Vp00ZNmjTRyJEjJUnXr1/Xu+++Kz8/P4WEhMjHx0dffPHFHY+lZMmSWrRokZYuXaqAgABNnTpVo0ePtlincuXK2rBhg/bv3686deooMDBQw4cPV7FixSzWy8l3MWzYMA0YMEDDhw+Xn5+f2rZtq5MnT0q60WP5p59+UsmSJdWyZUv5+fmpc+fOunz58l2Pi2tLmwMGDFCHDh3UqVMn1axZU66urhZj3Us3AtqgoCA1bdpUr7zyipo3b26MS59p0aJFqlGjhtq1a6cKFSpo4MCBRu9vW89ldo4fP65ly5bp2LFjqlKliry8vIzP5s2bJUmurq765JNPVL16ddWoUUOHDx/WihUrjPcVjB8/XqtXr1aJEiUUGBgo6UbwXqBAAdWqVUvNmjVTcHCwxV+WSDdeclu0aFHVrVtXLVq0UJcuXeTq6mq8x8BkMmnFihWqW7eu3nzzTfn4+Oj111/XkSNHjPcKZMdkMqlevXqKjo7WiRMn7svvcEpKijGeuyRdvHhRiYmJFsPuJCUl6dSpU/e8LwAAAAAAADxaTBk5ecMhADwgx44dU4kSJbRmzRqrL4h9kpw/f17u7u7yG7wo25ceAniw9kQG27sEAHjkZN6fnDt37r6+gPlBtQsAAHC3cnp/8si8WBTA02XdunVKTU2Vv7+/UlJSNHDgQHl7e6tu3br2Lg0AAAAAAAAwPFLDueDx0L17d5nN5mw/3bt3t3d5d8Xa8ZjNZm3cuNHe5d21jRs33vbY7CktLU3/+te/VLFiRbVo0UIeHh6KjY1Vnjx57vu+bncecufO/cieIwAAAAAAANgfw7kgx06ePKnz589nu8zNzU1FihR5yBXdu4MHD1pdVrx4cTk7Oz/Eau6fS5cuWbz88lZly5Z9iNXYz+3Ow6VLl277/T6oc8RwLoB9MZwLAGTFcC4AAOBpwXAueOCKFCnyWAblt/OkhsnOzs5P7LHlBOcBAAAAAAAAd4vhXAAAAAAAAAAAsIIQHQAAAAAAAAAAKwjRAQAAAAAAAACwghAdAAAAAAAAAAArCNEBAAAAAAAAALCCEB0AAAAAAAAAACsI0QEAAAAAAAAAsIIQHQAAAAAAAAAAKwjRAQAAAAAAAACwwsHeBQDA02zLkEZyc3OzdxkAAAAAAACwgp7oAAAAAAAAAABYQYgOAAAAAAAAAIAVhOgAAAAAAAAAAFhBiA4AAAAAAAAAgBWE6AAAAAAAAAAAWEGIDgAAAAAAAACAFYToAAAAAAAAAABYQYgOAAAAAAAAAIAVhOgAAAAAAAAAAFhBiA4AAAAAAAAAgBUO9i4AAJ5mL4xZo9xO+exdBvDI2hMZbO8SAAAAAABPOXqiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGDFIx+iR0ZGqkqVKvYu477y9vbW559/btO6J06cUOPGjZUvXz7lz5//gdZ1O+Hh4WrevLnd9v8ky8n1YE9Py7V4+PBhmUwmxcfHP7B9AAAAAAAA4PFhtxC9Xr166tu37x3Xi4iI0Nq1a43ppy3M/eyzz5SSkqL4+Hjt37/f3uXcM1u/dzx6nrRrEQAAAAAAALDFI9sTPSMjQ9euXZPZbFahQoXsXU4WV69efSj7SUpKUrVq1VSuXDkVKVLkoewTyA7XIoAHIe2f0/ozdo7S/jmd7fKUlBRFRkYqJSXlIVcGALjfdu/ebe8SAAAA7opdQvTw8HBt2LBBEydOlMlkkslkUnR0tEwmk3744QdVq1ZNTk5O2rRpk8VwLpGRkZo1a5a+++47Y7vY2FhJ0p49e9SgQQM5OzurUKFC6tq1q1JTUy322bx5c40bN05eXl4qVKiQ3n33XaWlpdlUs7e3tz788EN17NhRbm5u6tq1qyRp06ZNqlOnjpydnVWiRAn17t1bFy5cMLY7efKkmjVrJmdnZz377LOKiYmx+Tx5e3tr0aJFmj17tkwmk8LDw7MdauLs2bMW5+Lvv/9WWFiYPDw85OzsrHLlyikqKspY/+jRo2rTpo3y58+vggULKjQ0VIcPHzaWX79+Xf3791f+/PlVqFAhDRw4UBkZGTbXbU1233vmfjds2KDnnntOTk5O8vLy0uDBg3Xt2jWb2k1PT9cnn3yismXLysnJSSVLltRHH31kLLf12hg5cqQ8PDzk5uam7t27Gw9KZs+erUKFCunKlSsW+23evLk6dOhgU43//e9/VaNGDeXNm1eFCxdWixYtrK47YcIE+fv7K1++fCpRooR69OhhUW90dLTy58+v77//Xr6+vnJxcdFrr72mixcvatasWfL29laBAgXUu3dvXb9+3dgu8xpu166d8uXLp+LFi+s///mPTfU/rtfiypUr9eKLLxrbN23aVElJSRbrbN26VYGBgcqbN6+qV6+unTt32tw+gHt3LfWM/toQo2upZ7JdnpKSopEjRxKiA8ATICEhwd4lAAAA3BW7hOgTJ05UzZo11aVLF6WkpCglJUUlSpSQJA0ePFhjx45VQkKCKleubLFdRESE2rRpo5CQEGO7WrVq6cKFCwoODlaBAgW0bds2ffvtt1qzZo169uxpsf369euVlJSk9evXa9asWYqOjlZ0dLTNdY8bN04BAQHauXOnhg0bpqSkJIWEhKhVq1bavXu3FixYoE2bNlnsNzw8XEePHtX69eu1cOFCffHFFzp58qRN+9u2bZtCQkLUpk0bpaSkaOLEiTZtN2zYMO3du1c//PCDEhISNGXKFBUuXFiSlJaWpuDgYLm6umrjxo2Ki4uT2WxWSEiIERqPHz9e0dHRmjlzpjZt2qQzZ85oyZIlNp8na6x978ePH9fLL7+sGjVqaNeuXZoyZYq++uorjRo1yqZ2hwwZorFjxxrHPXfuXBUtWlSSbL421q5dq4SEBMXGxmrevHlavHixRo4cKUlq3bq1rl+/rmXLlhnrnzx5UsuXL9dbb711x/qWL1+uFi1a6OWXX9bOnTu1du1aPffcc1bXz5UrlyZNmqTff/9ds2bN0rp16zRw4ECLdS5evKhJkyZp/vz5WrlypWJjY9WiRQutWLFCK1as0Jw5czRt2jQtXLjQYrtPP/3UuIYHDx6sPn36aPXq1Xc8hsf1Wrxw4YL69++v7du3a+3atcqVK5datGih9PR0SVJqaqqaNm2qChUqaMeOHYqMjFRERITN7efElStXdP78eYsPgP9z/eplXb9yIcvn5oeIAIDHA/c9AADgSeNgj526u7vL0dFRLi4u8vT0lCTt27dPkvTBBx+ocePG2W5nNpvl7OysK1euGNtJ0qxZs3T58mXNnj1b+fLlkyRNnjxZzZo108cff2wEqgUKFNDkyZOVO3dulS9fXq+88orWrl2rLl262FR3gwYNNGDAAGP67bffVlhYmDHGd7ly5TRp0iQFBQVpypQpSk5O1g8//KCtW7eqRo0akqSvvvpKfn5+Nu3Pw8NDTk5OcnZ2No7377//vuN2ycnJCgwMVPXq1SXd6EWcacGCBUpPT9eMGTNkMpkkSVFRUcqfP79iY2P10ksv6fPPP9eQIUPUsmVLSdLUqVO1atUqm2q+ney+d0n64osvVKJECU2ePFkmk0nly5fX//73Pw0aNEjDhw9XrlzWn/X8888/mjhxoiZPnqxOnTpJksqUKaMXX3xRkjR37lybrg1HR0fNnDlTLi4uqlixoj744AO99957+vDDD+Xs7Kz27dsrKipKrVu3liR9/fXXKlmypOrVq3fH4/7oo4/0+uuvG6G8JAUEBFhd/+Yx4729vTVq1Ch1795dX3zxhTE/LS1NU6ZMUZkyZSRJr732mubMmaM///xTZrNZFSpUUP369bV+/Xq1bdvW2K527doaPHiwJMnHx0dxcXH67LPPrP7OZXpcr8VWrVpZTM+cOVMeHh7au3evKlWqpLlz5yo9PV1fffWV8ubNq4oVK+rYsWN65513bN6HrcaMGWNxDQCwdDj6vWznB419yIUAAO4Z9z0AAOBJ88iNiZ4ZtuVEQkKCAgICjJBUuhEWpqenKzEx0ZhXsWJF5c6d25j28vKyuVd4drXt2rVL0dHRMpvNxic4OFjp6ek6dOiQEhIS5ODgoGrVqhnblC9fXvnz58/xMebEO++8o/nz56tKlSoaOHCgNm/ebFHzwYMH5erqatRcsGBBXb58WUlJSTp37pxSUlL0/PPPG9s4ODjc1fdiq4SEBNWsWdMIUqUb319qaqqOHTt2x22vXLmihg0bWl1uy7UREBAgFxcXY7pmzZpKTU3V0aNHJUldunTRjz/+qOPHj0u6MaRKeHi4Rc3WxMfHW60vO2vWrFHDhg1VvHhxubq6qkOHDjp9+rQuXrxorOPi4mIE6JJUtGhReXt7y2w2W8y79fquWbNmlukH+We19r4WDxw4oHbt2ql06dJyc3MzQvzk5GRJMv7iJW/evMY2t56j+2XIkCE6d+6c8cm8tgDc4B3+qfwGL8ry2bBhg71LAwDkEPc9AADgSWOXnui3c3PYeb/lyZPHYtpkMhnDOtji1tpSU1PVrVs39e7dO8u6JUuW1P79+++u0NvI7JV987jQt47r3qRJEx05ckQrVqzQ6tWr1bBhQ7377rsaN26cUlNTVa1atWzHZvfw8Ljv9T5ozs7OD2U/gYGBCggI0OzZs/XSSy/p999/1/Lly23aNic1Hj58WE2bNtU777yjjz76SAULFtSmTZvUuXNnXb161Qj6s7uW7/X6zqnH4Vps1qyZSpUqpenTp6tYsWJKT09XpUqVHtqLgW/m5OQkJyenh75f4HGR2zGvcjtlvQe4+eEgAODxwH0PAAB40titJ7qjo6PFSw/vZTs/Pz/t2rXL4oWecXFxypUrl3x9fe+5VmuqVq2qvXv3qmzZslk+jo6OKl++vK5du6YdO3YY2yQmJurs2bN3vc/McPHmF6zd/GLHm9fr1KmTvv76a33++ef68ssvjZoPHDigIkWKZKnZ3d1d7u7u8vLy0i+//GK0desx3Atr39/PP/9sEcbGxcXJ1dVVzzzzzG3bK1eunJydnbV27dpsl9t6bezatUuXLl0yprds2SKz2WyM1S/dGL4nOjpaUVFRatSokcWy26lcubLV+m61Y8cOpaena/z48XrhhRfk4+Oj//3vfzZta4stW7ZkmbZ1eKFbPerX4unTp5WYmKihQ4eqYcOG8vPzyzIEjZ+fn3bv3q3Lly8b8249RwAeLAdzQXkEhcnBXDDb5V5eXhoxYoS8vLwecmUAgPvtbu87AQAA7M1uIbq3t7d++eUXHT58WKdOnbK5x6y3t7d2796txMREnTp1SmlpaQoLC1PevHnVqVMn/fbbb1q/fr169eqlDh06GGNePwiDBg3S5s2b1bNnT8XHx+vAgQP67rvvjJdW+vr6KiQkRN26ddMvv/yiHTt26O23376n3tPOzs564YUXjJevbtiwQUOHDrVYZ/jw4fruu+908OBB/f777/r++++NG9awsDAVLlxYoaGh2rhxow4dOqTY2Fj17t3bGDqlT58+Gjt2rJYuXap9+/apR48e9xT83yy7771Hjx46evSoevXqpX379um7777TiBEj1L9//9uOhy5JefPm1aBBgzRw4EDNnj1bSUlJ2rJli7766ivjeG25Nq5evarOnTtr7969WrFihUaMGKGePXta7L99+/Y6duyYpk+fbtMLRTONGDFC8+bN04gRI5SQkKA9e/bo448/znbdsmXLKi0tTf/+97/1xx9/aM6cOZo6darN+7qTuLg4ffLJJ9q/f7/+85//6Ntvv1WfPn3uqq1H/VosUKCAChUqpC+//FIHDx7UunXr1L9/f4t12rdvL5PJpC5duhjf/bhx47K0Vb58eYsXmg4ZMkQdO3Y0prdu3ary5csbw/0AsF0e10IqWq+D8rgWyna5l5eXIiMjCdEB4AlQuXJle5cAAABwV+wWokdERCh37tyqUKGCPDw8jDGK76RLly7y9fVV9erV5eHhobi4OLm4uGjVqlU6c+aMatSooddee00NGzbU5MmTH+gxVK5cWRs2bND+/ftVp04dBQYGavjw4SpWrJixTlRUlIoVK6agoCC1bNlSXbt2VZEiRe5pvzNnztS1a9dUrVo19e3bV6NGjbJY7ujoqCFDhqhy5cqqW7eucufOrfnz50u6MZb2Tz/9pJIlS6ply5by8/NT586ddfnyZbm5uUmSBgwYoA4dOqhTp06qWbOmXF1d1aJFi3uqOVN233vx4sW1YsUKbd26VQEBAerevbs6d+6cJZC1ZtiwYRowYICGDx8uPz8/tW3b1hgL3NZro2HDhipXrpzq1q2rtm3b6tVXX1VkZKTFOu7u7mrVqpXMZrOaN29u8zHXq1dP3377rZYtW6YqVaqoQYMG2rp1a7brBgQEaMKECfr4449VqVIlxcTEaMyYMTbv604GDBig7du3KzAwUKNGjdKECRMUHBx81+09ytdirly5NH/+fO3YsUOVKlVSv3799Omnn1qsYzab9d///ld79uxRYGCg3n///WwfcCQmJurcuXPGdEpKisV/sy5evKjExMQsw9kAAAAAAADg8WfKuHkMDeApFB4errNnz2rp0qV3XLdhw4aqWLGiJk2a9OALu8+8vb3Vt29f9e3b196lQNL58+fl7u4uv8GLsh0HGsANeyLv/kEfACBnMu9Pzp07Z3RqeJTbBQAAuFs5vT955F4sCjyK/v77b8XGxio2NlZffPGFvcsBAAAAAAAA8JDYbTiXR8nGjRtlNputfh6UmJgYq/usWLHiA9vvvUhOTrZac65cuZQrVy6ry20dssfW/d1tm3cjMDBQ4eHh+vjjj7O8rLZixYpW64uJiXko9d2rJ+1afJjXBgAAAAAAAJ5sDOci6dKlS7d9IWDZsmUfyH7/+ecf/fnnn9kuy5Mnj0qVKvVA9nsvrl27psOHD9/Vtt7e3nJwyNkfP9xpf3fT5v125MgRq2NhFy1aVK6urg+5opx7Eq/FR+HauB2GcwFsw3AuAPDwMJwLAAB4WjCcy11wdnZ+YEH57bi6uj4WAevNHBwcHuq5etj7uxuPYsCcU1yLAAAAAAAAQPYYzgUAAAAAAAAAACsI0QEAAAAAAAAAsIIQHQAAAAAAAAAAKwjRAQAAAAAAAACwghAdAAAAAAAAAAArCNEBAAAAAAAAALCCEB0AAAAAAAAAACsI0QEAAAAAAAAAsIIQHQAAAAAAAAAAKwjRAQAAAAAAAACwwsHeBQDA02zLkEZyc3OzdxkAAAAAAACwgp7oAAAAAAAAAABYQYgOAAAAAAAAAIAVhOgAAAAAAAAAAFhBiA4AAAAAAAAAgBWE6AAAAAAAAAAAWEGIDgAAAAAAAACAFYToAAAAAAAAAABYQYgOAAAAAAAAAIAVhOgAAAAAAAAAAFjhYO8CAAAAAABPvoPdn5HZ0WTvMvCU8Ik+Z+8SAABPEHqiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFY8lSF6ZGSkqlSpYu8y7KpevXrq27fvPbURHR2t/Pnz35d6HnUmk0lLly61dxlZHD58WCaTSfHx8fYuxWb349oDAAAAAAAAHpYHGqLHxsbKZDJZ/dSvX1/S/wWBRYoU0T///GPRRpUqVRQZGWlMh4eHZ2knJCQkR3VFRERo7dq1Fm02b978ro/zVosXL9ZLL72kQoUKWQ04k5KS1KJFC3l4eMjNzU1t2rTRn3/+ed9qgHVP8kOUW0P1zOnMj6urqypWrKh3331XBw4csNg2Ojo629/TGTNmSJJSUlLUvn17+fj4KFeuXFaD8LNnz+rdd9+Vl5eXnJyc5OPjoxUrVuToOOrVq2fs38nJScWLF1ezZs20ePHiLOveXKuDg4NKliyp/v3768qVKxbrxcTEKCAgQC4uLvLy8tJbb72l06dP56iuB2H37t32LgEAAACwq5MX0/Xv+Ms6eTHd3qUoJSVFkZGRSklJsXcpAIBHyAMN0WvVqqWUlJQsn2nTpslkMqlHjx4W6//zzz8aN27cHdsNCQmxaG/evHk5qstsNqtQoUI52sYWV69elSRduHBBL774oj7++ONs17tw4YJeeuklmUwmrVu3TnFxcbp69aqaNWum9HT73zTgwcu8Vh6WNWvWKCUlRbt27dLo0aOVkJCggIAAi4dJkuTm5pbl9zUsLEySdOXKFXl4eGjo0KEKCAjIdj9Xr15V48aNdfjwYS1cuFCJiYmaPn26ihcvnuOau3TpopSUFCUlJWnRokWqUKGCXn/9dXXt2jXLulFRUUpJSdGhQ4f0xRdfaM6cORo1apSxPC4uTh07dlTnzp31+++/69tvv9XWrVvVpUuXHNd1vyUkJNi7BAAAAMCu/rqUocm7ruqvSxn2LkUpKSkaOXIkIToAwMIDDdEdHR3l6elp8fn7778VERGhf/3rX2rdurXF+r169dKECRN08uTJ27br5ORk0WaBAgUslg8aNEg+Pj5ycXFR6dKlNWzYMKWlpRnLb+6JHBkZqVmzZum7774zerPGxsZKko4ePao2bdoof/78KliwoEJDQ3X48GGjncwe7B999JGKFSsmX19fSVKHDh00fPhwNWrUKNv64+LidPjwYUVHR8vf31/+/v6aNWuWtm/frnXr1km6EUb27NlTXl5eyps3r0qVKqUxY8YYbZw9e1bdunVT0aJFlTdvXlWqVEnff/+9JOn06dNq166dihcvLhcXF/n7+9/xQcOVK1cUERGh4sWLK1++fHr++eeN85ApOjpaJUuWlIuLi1q0aJHjXrxjx45V0aJF5erqqs6dO2vw4MEWPcKzG+ajefPmCg8PN6bnzJmj6tWry9XVVZ6enmrfvr3F9ZL51w9r165V9erV5eLiolq1aikxMdE4hpEjR2rXrl3G9x0dHZ2j45CkESNGyMvLy+hFvGnTJtWpU0fOzs4qUaKEevfurQsXLhjre3t768MPP1THjh3l5uamrl27GsPhrFq1Sn5+fjKbzcYDopvNmDFDfn5+yps3r8qXL68vvvgix/UWKlRInp6eKl26tEJDQ7VmzRo9//zz6ty5s65fv26sZzKZsvzOOjs7G8cwceJEdezYUe7u7tnuZ+bMmTpz5oyWLl2q2rVry9vbW0FBQVlC92vXrqlnz55yd3dX4cKFNWzYMGVkWN4wu7i4yNPTU88884xeeOEFffzxx5o2bZqmT5+uNWvWWKybP39+eXp6qkSJEmratKlCQ0P166+/Gst//vlneXt7q3fv3nr22Wf14osvqlu3btq6dWuOz+XdunLlis6fP2/xAQAAeBJx34O7dTEtQ6lX78/n1mvQ1k9qaqq9TwMA4BH0UMdEP3v2rEJDQ1WvXj19+OGHWZa3a9dOZcuW1QcffHDbdmJjY1WkSBH5+vrqnXfeyRLmurq6Kjo6Wnv37tXEiRM1ffp0ffbZZ9m2FRERoTZt2lj0bq9Vq5bS0tIUHBwsV1dXbdy4UXFxcUbIeXMv4rVr1yoxMVGrV682Quw7uXLlijFMRaa8efMqV65c2rRpkyRp0qRJWrZsmb755hslJiYqJiZG3t7ekqT09HQ1adJEcXFx+vrrr7V3716NHTtWuXPnliRdvnxZ1apV0/Lly/Xbb7+pa9eu6tChw20Dw549e+rnn3/W/PnztXv3brVu3VohISHGkB+//PKLOnfurJ49eyo+Pl7169e36Ol7J998840iIyM1evRobd++XV5eXncVBqelpenDDz/Url27tHTpUh0+fNgiZM/0/vvva/z48dq+fbscHBz01ltvSZLatm2rAQMGqGLFisb33bZtW5v3n5GRoV69emn27NnauHGjKleurKSkJIWEhKhVq1bavXu3FixYoE2bNqlnz54W244bN04BAQHauXOnhg0bJkm6ePGixo0bpzlz5uinn35ScnKyIiIijG1iYmI0fPhwffTRR0pISNDo0aM1bNgwzZo1K8fn7ma5cuVSnz59dOTIEe3YseOe2rrZsmXLVLNmTb377rsqWrSoKlWqpNGjR1sE9ZI0a9YsOTg4aOvWrZo4caImTJhgDBtzO506dVKBAgWyHdYl0/79+7Vu3To9//zzxryaNWvq6NGjWrFihTIyMvTnn39q4cKFevnll+/+YHNozJgxcnd3Nz4lSpR4aPsGAAB4mLjvwd16Y9VFVZv3z3353HwN5uQTFBRk79MAAHgEOTysHaWnp6t9+/ZycHBQTEyMTCZTlnVMJpPGjh2rZs2aqV+/fipTpkyWdUJCQtSyZUs9++yzSkpK0r/+9S81adJEP//8sxEiDx061Fjf29tbERERmj9/vgYOHJilPbPZLGdnZ125ckWenp7G/K+//lrp6emaMWOGUWtUVJTy58+v2NhYvfTSS5KkfPnyacaMGXJ0dLT5XLzwwgvKly+fBg0apNGjRysjI0ODBw/W9evXjV7IycnJKleunF588UWZTCaVKlXK2H7NmjXaunWrEhIS5OPjI0kqXbq0sbx48eIWQWyvXr20atUqffPNN3ruueey1JOcnKyoqCglJyerWLFikm48XFi5cqWioqI0evRoTZw4USEhIcY59PHx0ebNm7Vy5Uqbjvnzzz9X586d1blzZ0nSqFGjtGbNGl2+fNnm8ybJCMMzj3nSpEmqUaOGUlNTZTabjWUfffSRcfMzePBgvfLKK7p8+bKcnZ1lNpvl4OBg8X3b4tq1a3rjjTe0c+dObdq0yRiiZMyYMQoLCzN60ZcrV06TJk1SUFCQpkyZorx580qSGjRooAEDBhjtbdy4UWlpaZo6dapxrffs2dPiIdKIESM0fvx4tWzZUpL07LPPau/evZo2bZo6deqUo/pvVb58eUk3xk3PvC7OnTtncR7NZrNOnDhhc5t//PGH1q1bp7CwMK1YsUIHDx5Ujx49lJaWphEjRhjrlShRQp999plMJpN8fX21Z88effbZZ3ccXiVXrlzy8fGx+IsQ6cYDuNy5c+vatWu6cuWKmjZtqiFDhhjLa9eurZiYGLVt21aXL1/WtWvX1KxZM/3nP/+x+dju1ZAhQ9S/f39j+vz58/yDEgAAPJG478Hd+jrYRX4Fc9+XtspOPXZX28XHxxOkAwCyeGgh+r/+9S/9/PPP2rp1q1xdXa2uFxwcrBdffFHDhg3T3Llzsyx//fXXjZ/9/f1VuXJllSlTRrGxsWrYsKEkacGCBZo0aZKSkpKUmpqqa9euyc3NLUf17tq1SwcPHsxS6+XLl5WUlGRRQ04CdEny8PDQt99+q3feeUeTJk1Srly51K5dO1WtWlW5ct3444Dw8HA1btxYvr6+CgkJUdOmTY3gPj4+Xs8884wRoN/q+vXrGj16tL755hsdP35cV69e1ZUrV+Ti4pLt+nv27NH169eztHflyhVj7PiEhAS1aNHCYnnNmjVtDtETEhLUvXv3LNuvX7/epu0z7dixQ5GRkdq1a5f+/vtvYwz55ORkVahQwVivcuXKxs9eXl6SpJMnT6pkyZI52t/N+vXrJycnJ23ZskWFCxc25u/atUu7d+9WTEyMMS8jI0Pp6ek6dOiQ/Pz8JEnVq1fP0qaLi4vFwyIvLy9jeJoLFy4oKSlJnTt3tgiXr127ZnU4lZzIHD7l5gdarq6uFsOgZF6PtkpPT1eRIkX05ZdfKnfu3KpWrZqOHz+uTz/91CJEf+GFFyz2W7NmTY0fP17Xr183Hobdru5bH8J99tlnatSoka5fv66DBw+qf//+6tChg+bPny9J2rt3r/r06aPhw4crODhYKSkpeu+999S9e3d99dVXOTrGu+Xk5GTx1ycAAABPKu57cLdc8phkdsza4e5u5DQDyHRzpyIAADI9lBB9/vz5GjdunJYvX65y5crdcf2xY8eqZs2aeu+99+64bunSpVW4cGEdPHhQDRs21M8//6ywsDCNHDlSwcHBcnd31/z58zV+/Pgc1Zyamqpq1apZBKOZPDw8jJ/z5cuXo3YzvfTSS0pKStKpU6fk4OBgjOmc2aO8atWqOnTokH744QetWbNGbdq0UaNGjbRw4UJjjGprPv30U02cOFGff/65/P39lS9fPvXt29fqyyxTU1OVO3du7dixI0uA+TBvIHLlypVlXOybx7K/cOGCgoODFRwcrJiYGHl4eCg5OVnBwcFZji1PnjzGz5mB672+tLVx48aaN2+eVq1aZbxsU7px/rp166bevXtn2ebm0D67a+XmOjNrzTwHmWPxTZ8+3WJoEkl3DJptkflCy2effdaYlytXLpUtW/au2/Ty8lKePHks6vPz89OJEyd09erVHD9wutX169d14MAB1ahRw2K+p6enUbevr6/++ecftWvXTqNGjVLZsmU1ZswY1a5d2/hvSuXKlZUvXz7VqVNHo0aNMh602EPmQxYAAADgaeXhbFLPAEd5ON+fAP1eeHl5Ge/AAgAg0wMP0ePj49W5c2eNHTtWwcHBNm3z3HPPqWXLlho8ePAd1z127JhOnz5t/A9u8+bNKlWqlN5//31jnSNHjty2DUdHxyxjNletWlULFixQkSJF7voJti0yezSvW7dOJ0+e1Kuvvmosc3NzU9u2bdW2bVu99tprCgkJ0ZkzZ1S5cmUdO3ZM+/fvz7Y3elxcnEJDQ/XGG29IuhEe79+/36Kn9s0CAwN1/fp1nTx5UnXq1Ml2HT8/P/3yyy8W87Zs2WLzcWZu37FjR6vbe3h4WLxU8/r16/rtt99Uv359SdK+fft0+vRpjR071vhz0O3bt9tcQ6bsvm9bvPrqq2rWrJnat2+v3LlzG38VUbVqVe3du/eewufsFC1aVMWKFdMff/xhEdrfD+np6Zo0aZKeffZZBQYG3rd2a9eurblz5yo9Pd3oxb5//355eXlZBOjZXUvlypW748OBWbNm6e+//1arVq1uu15mO5cuXZJ0Y+x5BweHbNe59cHNw3bzX00AAAAAT6MiLrnUq0pee5ch6UaIHhkZae8yAACPmAf6YtFTp06pefPmqlevnt544w2dOHHC4vPXX39Z3fajjz7SunXrlJiYaMxLTU3Ve++9py1btujw4cNau3atQkNDVbZsWSOgL1eunJKTkzV//nwlJSVp0qRJWrJkyW3r9Pb21u7du5WYmKhTp04pLS1NYWFhKly4sEJDQ7Vx40YdOnRIsbGx6t27t44du/3YamfOnFF8fLz27t0rSUpMTFR8fLzF2NJRUVHasmWLkpKS9PXXX6t169bq16+ffH19JUkTJkzQvHnztG/fPu3fv1/ffvutPD09lT9/fgUFBalu3bpq1aqVVq9ebfRYzxxapVy5clq9erU2b96shIQEdevWTX/++afVen18fBQWFqaOHTtq8eLFOnTokLZu3aoxY8Zo+fLlkqTevXtr5cqVGjdunA4cOKDJkyfbPJSLJPXp00czZ85UVFSU9u/frxEjRuj333+3WKdBgwZavny5li9frn379umdd97R2bNnjeUlS5aUo6Oj/v3vf+uPP/7QsmXLsn1B7Z14e3vr0KFDio+P16lTp3TlyhWbt23RooXmzJmjN998UwsXLpQkDRo0SJs3bzZeunrgwAF99913WV4sejdGjhypMWPGaNKkSdq/f7/27NmjqKgoTZgwIUftnD59WidOnDDOW6NGjbR161Z99dVXOerVHh8fr/j4eKWmpuqvv/6yuM4l6Z133tGZM2fUp08f7d+/X8uXL9fo0aP17rvvWrSTnJys/v37KzExUfPmzdO///1v9enTx2Kdixcv6sSJEzp27Ji2bNmiQYMGqXv37nrnnXeMByuZzp49qxMnTuh///ufNmzYoA8++EA+Pj5GL+9mzZpp8eLFmjJliv744w/FxcWpd+/eeu6554z3ANzOkiVLjDHkM5UvX97ivy1DhgyxeEgEAAAAAACAJ8MDDdGXL1+uI0eOaMWKFfLy8sryuXVIhpv5+PjorbfesnjxZO7cubV79269+uqr8vHxUefOnVWtWjVt3LjRGHPv1VdfVb9+/dSzZ09VqVJFmzdv1rBhw25bZ5cuXeTr66vq1avLw8NDcXFxcnFx0U8//aSSJUuqZcuW8vPzU+fOnXX58uU79kxftmyZAgMD9corr0i6MY57YGCgpk6daqyTmJio5s2by8/PTx988IHef/99jRs3zlju6uqqTz75RNWrV1eNGjV0+PBhrVixwujdu2jRItWoUUPt2rVThQoVNHDgQKN39dChQ1W1alUFBwerXr168vT0VPPmzW9bc1RUlDp27KgBAwbI19dXzZs317Zt24zhSF544QVNnz5dEydOVEBAgH788UeLF7jeSdu2bTVs2DANHDhQ1apV05EjR/TOO+9YrPPWW2+pU6dO6tixo4KCglS6dGmLsNTDw0PR0dH69ttvVaFCBY0dO9binNmqVatWCgkJUf369eXh4aF58+blaPvXXntNs2bNUocOHbR48WJVrlxZGzZs0P79+1WnTh0FBgZq+PDhNoWzd/L2229rxowZioqKkr+/v4KCghQdHW0xBIstGjVqJC8vL/n7+2vw4MHy8/PT7t27s4TRdxIYGKjAwEDt2LFDc+fOVWBgoF5++WVjeYkSJbRq1Spt27ZNlStXVu/evdWnT58sf1XSsWNHXbp0Sc8995zeffdd9enTR127drVYZ/r06fLy8lKZMmXUsmVL7d27VwsWLNAXX3yRpa4333xTXl5eeuaZZ9SuXTtVrFhRP/zwg9H7PDw8XBMmTNDkyZNVqVIltW7dWr6+vlq8eLFNx33u3DmLB3rSjd/hc+fOGdMpKSlKTk62qT0AAAAAAAA8PkwZ9h7LAE+tyMhILV26VPHx8fYuBXjozp8/L3d3d507d+6BDhkFAABgqwd1f5LZ7o52rvftpZHAnfhEn7vzSgCAp1ZO73seaE90AAAAAAAAAAAeZ/ccoicnJ8tsNlv9MLzB06FixYpWr4GYmBh7l3dbMTExVmuvWLGivcvDQ3C7/4Zt3LjR3uUBAAAAAADAju55OJdr167p8OHDVpd7e3sb4xLjyXXkyBGlpaVlu6xo0aJydXV9yBXZ7p9//rH64tU8efKoVKlSD7kiPGwHDx60uqx48eJydna+7/tkOBcAAPCoYTgXPEkYzgUAcDs5ve+553TbwcFBZcuWvddm8Jh7nINmV1fXRzrkx4PHf8MAAAAAAABgDWOiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGCFg70LAAAAAAA8+cpOPSY3Nzd7lwEAAJBj9EQHAAAAAAAAAMAKQnQAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArCBEBwAAAAAAAADACkJ0AAAAAAAAAACsIEQHAAAAAAAAAMAKQnQAAAAAAAAAAKwgRAcAAAAAAAAAwApCdAAAAAAAAAAArHCwdwEAAAAAgCffwe7PyOxosncZeEh8os/ZuwQAAO4beqIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYAUhOgAAAAAAAAAAVhCiAwAAAAAAAABgBSE6AAAAAAAAAABWEKIDAAAAAAAAAGAFIToAAAAAAAAAAFYQogMAAAAAAAAAYMUTHaJHRkaqSpUq9i7jgahXr5769u1723W8vb31+eefP5R68Gg5fPiwTCaT4uPj7V1KFrGxsTKZTDp79qy9SwEAAAAAAADu6L6E6JmhmLVP/fr1Jf1fsFekSBH9888/Fm1UqVJFkZGRxnR4eHiWdkJCQnJUV0REhNauXWvRZvPmze/6OG+WlpamQYMGyd/fX/ny5VOxYsXUsWNH/e9//8t2/StXrqhKlSqPbLCJR9v9vHYfNbeG6jf/9yRXrlxyd3dXYGCgBg4cqJSUFIttIyMjs/1vzpo1ayRJv//+u1q1aiVvb2+ZTCarD5WOHz+uN954Q4UKFZKzs7P8/f21ffv2B3nYAAAAAAAAeEzclxC9Vq1aSklJyfKZNm2aTCaTevToYbH+P//8o3Hjxt2x3ZCQEIv25s2bl6O6zGazChUqlKNtbHH16lVdvHhRv/76q4YNG6Zff/1VixcvVmJiol599dVstxk4cKCKFSt232t5UNLS/l97dx5f07X/f/x9JEIiEyrEkMQY85hISYtbvlLaoFoqTQ2V28FUoWoeq6aqsVpTEYqGS9Ebdc2CUHOU0iAtQVOqhgglJPv3h59TpyeHRMNJ6/V8PM7j4eyz9tqfvbJv72d/zjpr37J3CFmWlpZm7xCeCI/7mkhISNDPP/+sPXv2qF+/ftqwYYOqVq2qQ4cOWbSrUqWK1X97GjRoIEm6fv26ypQpo7Fjx6pYsWKZHufSpUsKDg5W3rx5tWbNGh05ckQTJkxQwYIFH/k5StJ33333WI4DAAAA/BXnr2fok/gbOn89I0f6S05O1vDhw60mygAAkBvlSBHdyclJxYoVs3hdunRJffr00cCBA9WmTRuL9j169NDEiRN1/vz5+/abL18+iz7/XNTq16+fKlSoIBcXF5UpU0ZDhgyxKPTdu5zL8OHDNX/+fK1atco8W3XLli2SpNOnT6tt27by9PRUoUKF1LJlS508edLcz91ZwKNGjVLx4sXl7+8vDw8PrV+/Xm3btpW/v7+efvppTZs2Tfv27VNSUpJFnGvWrNG6desy/eLgt99+U1hYmEqUKCEXFxdVq1bN6suCa9euqUOHDnJ1dZW3t7cmTJhg1c/58+cVGhoqZ2dnlS5dWosWLbrv2P6ZyWTS9OnT1aJFCxUoUECjRo0yj9/cuXPl4+MjV1dXde3aVenp6froo49UrFgxeXl5adSoUeZ+DMPQ8OHD5ePjo3z58ql48eJ69913zZ/7+flp9OjR6ty5s9zc3OTj46NZs2ZZxHLo0CE999xzcnZ2VuHChfXWW28pNTX1vn+Pu79yWLp0qZ599lk5OzsrMDBQx44d0549exQQECBXV1c1a9ZMv/76a5bGJD09Xb1795anp6cKFy6svn37qmPHjhYzwjNbMufPv6qYOHGi+RcLpUqVUteuXS3OJyoqSp6enlq7dq0qVaokV1dX8xdI0v2v3axKT09X586dVbFiRfP1uWrVKtWuXVv58+dXmTJlNGLECN2+fdu8z/2uiS+++EJ+fn7y8PBQu3btLH5ZkpGRoTFjxqh06dJydnZWjRo1tGzZsmzFK0leXl4qVqyYKlSooHbt2ikuLk5FihRRly5dLNo5Ojpa/ffHyclJkhQYGKjx48erXbt2ypcvX6bHGTdunEqVKqV58+apbt26Kl26tJo2baqyZctmO+aHcfTo0cdyHAAAAOCv+PV3Q9MOpunX340c6S85OVkjRoygiA4A+Ft4JGuiX758WS1btlSjRo00cuRIq8/DwsJUrlw5ffDBB/ftZ8uWLfLy8pK/v7+6dOmi3377zeJzNzc3RUVF6ciRI5oyZYpmz56tSZMmZdpXnz591LZtW4vZ7fXr19etW7cUEhIiNzc3bdu2TXFxceYi5r0znDdu3KiEhAStX79eMTExmR7jypUrMplM8vT0NG87d+6c3nzzTX3xxRdycXGx2ufGjRuqU6eOVq9ercOHD+utt95S+/bttXv3bnOb999/X7GxsVq1apXWrVunLVu2aP/+/Rb9dOrUSadPn9bmzZu1bNkyffbZZw/8kuLPhg8frpdeekmHDh1S586dJUmJiYlas2aN/ve//+nLL7/UnDlz9MILL+jMmTOKjY3VuHHjNHjwYO3atUuStHz5ck2aNEkzZ87U8ePHtXLlSlWrVs3iOBMmTFBAQIAOHDigrl27qkuXLkpISJB05wuDkJAQFSxYUHv27NF//vMfbdiwQd27d7fow9bfY9iwYRo8eLD2798vR0dHvfbaa+rbt6+mTJmibdu26cSJExo6dGiWxmPChAmKiorS3LlztX37dl28eFErVqzI1phKUp48eTR16lR9//33mj9/vjZt2qS+fftatLl+/bo+/vhjffHFF9q6dauSkpLUp08fSbav3ay6efOm2rRpo/j4eG3btk0+Pj7atm2bOnTooJ49e+rIkSOaOXOmoqKiLL4QkWxfEytXrlRMTIxiYmIUGxursWPHmvcZM2aMFixYoBkzZuj7779Xr1699Prrrys2NjbbY3cvZ2dnvfPOO4qLi8v2tX0/X3/9tQICAtSmTRt5eXmpVq1amj17do71f9fNmzeVkpJi8QIAAPgnIu/5Z7t+y1Bq2oNff74G/vy6d2IRAAC5nWNOd5iRkaHXXntNjo6OWrRokUwmk1Ubk8mksWPHKjQ0VL169cp0xufzzz+v1q1bq3Tp0kpMTNTAgQPVrFkz7dy5Uw4ODpKkwYMHm9v7+fmpT58+io6OtipQSneWdnF2dtbNmzctlnVYuHChMjIy9Pnnn5tjnTdvnjw9PbVlyxY1bdpUklSgQAF9/vnn5hmuf3bjxg3169dPYWFhcnd3l3RnVnanTp30zjvvKCAgwGJ2+10lSpQwF0ulO7P0165dq6VLl6pu3bpKTU3VnDlztHDhQjVu3FiSNH/+fJUsWdK8z7Fjx7RmzRrt3r1bgYGBkqQ5c+aoUqVKmcZqy2uvvaY33njDYltGRobmzp0rNzc3Va5cWf/617+UkJCgb775Rnny5JG/v7/GjRunzZs3KygoSElJSSpWrJiaNGmivHnzysfHR3Xr1rXos3nz5uYlfvr166dJkyZp8+bN8vf31+LFi3Xjxg0tWLBABQoUkCRNmzZNoaGhGjdunIoWLSrJ+u9xd2z79OmjkJAQSVLPnj0VFhamjRs3Kjg4WJIUERGhqKioLI3H5MmTNWDAALVu3VqSNGPGDK1duzZbYyrJ4gGwfn5++vDDD/XOO+/os88+M2+/deuWZsyYYf7fQvfu3c1fMtm6drMiNTVVL7zwgm7evKnNmzfLw8NDkjRixAj1799fHTt2lCSVKVNGI0eOVN++fTVs2DDz/rauiaioKLm5uUmS2rdvr40bN9cIht4AACXPSURBVGrUqFG6efOmRo8erQ0bNqhevXrmvrdv366ZM2eqYcOG2Yr/zypWrCjpzt/by8tL0p1fLri6uprbVK5c2eJLqAf58ccfNX36dPXu3VsDBw7Unj179O6778rJyck8PjlhzJgxGjFiRI71BwAAkFuR9/yzvb72etYafunxaAMBAOAxyvEi+sCBA7Vz507t3r3bXGTLTEhIiJ555hkNGTJEixcvtvq8Xbt25n9Xq1ZN1atXV9myZbVlyxZzMXnJkiWaOnWqEhMTlZqaqtu3b5sL2Fl18OBBnThxwirWGzduKDEx0SIGWwX0W7duqW3btjIMQ9OnTzdv/+STT3T16lUNGDDA5vHT09M1evRoLV26VGfPnlVaWppu3rxpnrWemJiotLQ0BQUFmfcpVKiQ/P39ze+PHj0qR0dH1alTx7ytYsWKFjPisyIgIMBqm5+fn8XYFC1aVA4ODsqTJ4/Ftrszg9u0aaPJkyerTJkyev7559W8eXOFhobK0fGPS6169ermf5tMJhUrVsy8/9GjR1WjRg1zAV2SgoODlZGRoYSEBHMR3dbf496+722bWaz3c+XKFSUnJ1uMu6OjowICAmQY2fv54oYNGzRmzBj98MMPSklJ0e3bt3Xjxg1dv37d/Hd2cXGx+DLJ29s7R2Zbh4WFqWTJktq0aZOcnZ3N2w8ePKi4uDiLmefp6elWcWXlmrg31hMnTuj69ev6v//7P4t90tLSVKtWrb98PnfH/t4v5/z9/fX111+b39tatsWWjIwMBQQEaPTo0ZKkWrVq6fDhw5oxY0aOFtEHDBig3r17m9+npKSoVKlSOdY/AABAbkHe88+2MMRFlQo5PLBduRln7vt5fHz8X55kAwDA45KjRfTo6Gh9/PHHWr16tcqXL//A9mPHjlW9evX0/vvvP7BtmTJl9NRTT+nEiRNq3Lixdu7cqfDwcI0YMUIhISHy8PBQdHR0puuF309qaqrq1KmT6RriRYoUMf/73qLuve4W0E+dOqVNmzZZFPE3bdqknTt3WhX1AgICFB4ervnz52v8+PGaMmWKJk+ebF43OzIy0i4Py8zsHPPmzWvx3mQyZbotI+POw2VKlSqlhIQEbdiwQevXr1fXrl01fvx4xcbGmve73/5/JdY/93230Prnbdk91v3kyZPHqqh+77r8J0+e1IsvvqguXbpo1KhRKlSokLZv366IiAilpaWZi9WZjUl2i/WZad68uRYuXKidO3fqueeeM29PTU3ViBEjzLPs75U/f37zv7N6Tdwd07s/yVy9erVKlChh0S67xe3M3F0/3M/Pz7zNyclJ5cqVe+g+vb29VblyZYttlSpV0vLlyx+6z8zky5cvR8YAAAAgtyPv+WdzyWuSq5P1L87/7EET3O79NSkAALldjhXR4+PjFRERobFjx5qX03iQunXrqnXr1urfv/8D2545c0a//fabvL29JUk7duyQr6+vBg0aZG5z6tSp+/bh5OSk9PR0i221a9fWkiVL5OXlle1Z7HcL6MePH9fmzZtVuHBhi8+nTp2qDz/80Pz+559/VkhIiJYsWWKe4RwXF6eWLVvq9ddfl3RnVuyxY8fMRb2yZcsqb9682rVrl3x8fCRJly5d0rFjx8zf2lesWFG3b9/Wvn37zMu5JCQk6PLly9k6n5zi7Oys0NBQhYaGqlu3bqpYsaIOHTqk2rVrP3DfSpUqKSoqSteuXTMXcOPi4sxLxzwuHh4e8vb21q5du9SgQQNJMo/xvedRpEgRiwfhpKSk6KeffjK/37dvnzIyMjRhwgTz7P2lS5dmO57Mrt2s6NKli6pWraoWLVpo9erV5mumdu3aSkhI+EvF58xUrlxZ+fLlU1JSUo7PKvn99981a9YsNWjQwOILrr8qODjYvCb/XceOHZOvr2+OHeN+srvsEgAAAGAPRZxN6l7DSUWcH1xAzwpvb28NGzbMfI8PAEBuliNF9AsXLqhVq1Zq1KiRXn/9df3yyy8Wnzs4ONgseo0aNUpVqlSxWO7j7izZl19+WcWKFVNiYqL69u2rcuXKmQv05cuXV1JSkqKjoxUYGKjVq1c/8KGPfn5+Wrt2rRISElS4cGF5eHgoPDxc48ePV8uWLfXBBx+oZMmSOnXqlL766iv17dvXYu3xe926dUuvvPKK9u/fr5iYGKWnp5vPu1ChQnJycjIXve+6+0172bJlzf2WL19ey5Yt044dO1SwYEFNnDhR586dMxfRXV1dFRERoffff1+FCxeWl5eXBg0aZLGcir+/v55//nm9/fbbmj59uhwdHRUZGWmxfMfjEhUVpfT0dAUFBcnFxUULFy6Us7NzlguS4eHhGjZsmDp27Kjhw4fr119/VY8ePdS+fXvz8iyPS8+ePTV27FiVL19eFStW1MSJE62+mHjuuecUFRWl0NBQeXp6aujQoeY1+yWpXLlyunXrlj755BOFhoYqLi5OM2bMyHYsmV27f54RbkuPHj2Unp6uF198UWvWrNEzzzyjoUOH6sUXX5SPj49eeeUV5cmTRwcPHtThw4ctvvjJLjc3N/Xp00e9evVSRkaGnnnmGV25ckVxcXFyd3fP1vIo58+f140bN3T16lXt27dPH330kS5cuKCvvvoqy32kpaXpyJEj5n+fPXtW8fHxcnV1NX+B0KtXL9WvX1+jR49W27ZttXv3bs2aNUuzZs0y9zNgwACdPXtWCxYskCTt3r1bHTp00MaNG80z7hs3bqyXXnrJ6iG4D3LvEkQAAABAbuXlkkc9auZ/cMMs8vb21vDhw3OsPwAAHqU8D27yYKtXr9apU6f0zTffyNvb2+p1d3Z0ZipUqKDOnTvrxo0b5m0ODg767rvv1KJFC1WoUEERERGqU6eOtm3bZv5ZYIsWLdSrVy91795dNWvW1I4dOzRkyJD7xvnmm2/K399fAQEBKlKkiOLi4uTi4qKtW7fKx8dHrVu3VqVKlRQREaEbN27cd2b62bNn9fXXX+vMmTOqWbOmxfnu2LEjy2M3ePBg1a5dWyEhIWrUqJGKFSumVq1aWbQZP368nn32WYWGhqpJkyZ65plnLNY/l+48DLV48eJq2LChWrdurbfeesv84MXHydPTU7Nnz1ZwcLCqV6+uDRs26L///a/VLH1bXFxctHbtWl28eFGBgYF65ZVX1LhxY02bNu0RR27tvffeU/v27dWxY0fVq1dPbm5ueumllyzaDBgwQA0bNtSLL76oF154Qa1atbJY27xGjRqaOHGixo0bp6pVq2rRokUaM2ZMtmPJ7NrNjsjISI0YMULNmzfXjh07FBISopiYGK1bt06BgYF6+umnNWnSpByZfT1y5EgNGTJEY8aMUaVKlfT8889r9erVKl26dLb68ff3V/HixVWnTh2NHTtWTZo00eHDh62WXrmfn3/+WbVq1VKtWrWUnJysjz/+WLVq1dK///1vc5vAwECtWLFCX375papWraqRI0dq8uTJCg8PN7dJTk5WUlKS+f3169eVkJBgsXRPYmKiLly4kK1zBAAAAAAAQO5nMnJi4WXgCdGpUyddvnxZK1eutHco+JtLSUmRh4eHrly5ku2lpAAAAB6FR5Wf3O13X5hbltbSxj9Dhagr9g4BAACbspv35MhMdAAAAAAAAAAA/omyXERPSkqSq6urzde9Sx0gd1m0aJHNv1uVKlXsHZ7d3O963rZtm73Du6/Ro0fbjL1Zs2b2Dg8AAAAAAAD4x8jyci63b9/WyZMnbX7u5+dn8XBQ5B5Xr17VuXPnMv0sb968ObIO9t/RiRMnbH5WokQJuzyYNasuXryoixcvZvqZs7Oz+WGXyL1YzgUAAOQ2LOeCnMRyLgCA3Cy7eU+Wq96Ojo4qV67cXwoO9uHm5iY3Nzd7h5Hr/J2v50KFCqlQoUL2DgMAAAAAAAD4x2NNdAAAAAAAAAAAbKCIDgAAAAAAAACADRTRAQAAAAAAAACwgSI6AAAAAAAAAAA2UEQHAAAAAAAAAMAGiugAAAAAAAAAANhAER0AAAAAAAAAABsoogMAAAAAAAAAYANFdAAAAAAAAAAAbKCIDgAAAAAAAACADY72DgAAAAAA8M9XbsYZubu72zsMAACAbGMmOgAAAAAAAAAANlBEBwAAAAAAAADABoroAAAAAAAAAADYQBEdAAAAAAAAAAAbKKIDAAAAAAAAAGADRXQAAAAAAAAAAGygiA4AAAAAAAAAgA0U0QEAAAAAAAAAsIEiOgAAAAAAAAAANlBEBwAAAAAAAADABoroAAAAAAAAAADYQBEdAAAAAAAAAAAbKKIDAAAAAAAAAGADRXQAAAAAAAAAAGygiA4AAAAAAAAAgA0U0QEAAAAAAAAAsIEiOgAAAAAAAAAANlBEBwAAAAAAAADABoroAAAAAAAAAADYQBEdAAAAAAAAAAAbKKIDAAAAAAAAAGADRXQAAAAAAAAAAGygiA4AAAAAAAAAgA0U0QEAAAAAAAAAsIEiOgAAAAAAAAAANlBEBwAAAAAAAADABoroAAAAAAAAAADYQBEdAAAAAAAAAAAbKKIDAAAAAAAAAGCDo70DAIAnkWEYkqSUlBQ7RwIAAHDH3bzkbp6SU8h7AABAbpPdvIciOgDYwW+//SZJKlWqlJ0jAQAAsHT16lV5eHjkWH/kPQAAILfKat5DER0A7KBQoUKSpKSkpBy9Sf27SklJUalSpXT69Gm5u7vbO5xcgTGxxphYY0wsMR7WGBNrjImle8fDzc1NV69eVfHixXP0GOQ9lrgGrTEm1hgTa4yJJcbDGmNijTGx9FfyHoroAGAHefLceSSFh4cH/0d2D3d3d8bjTxgTa4yJNcbEEuNhjTGxxphYujsej6LITd6TOa5Ba4yJNcbEGmNiifGwxphYY0wsPUzew4NFAQAAAAAAAACwgSI6AAAAAAAAAAA2UEQHADvIly+fhg0bpnz58tk7lFyB8bDGmFhjTKwxJpYYD2uMiTXGxNLjGA/G3BLjYY0xscaYWGNMLDEe1hgTa4yJpb8yHibDMIxHEBMAAAAAAAAAAH97zEQHAAAAAAAAAMAGiugAAAAAAAAAANhAER0AAAAAAAAAABsoogMAAAAAAAAAYANFdAB4zD799FP5+fkpf/78CgoK0u7du+0dkl1t3bpVoaGhKl68uEwmk1auXGnvkOxqzJgxCgwMlJubm7y8vNSqVSslJCTYOyy7mj59uqpXry53d3e5u7urXr16WrNmjb3DyjXGjh0rk8mkyMhIe4diN8OHD5fJZLJ4VaxY0d5h2d3Zs2f1+uuvq3DhwnJ2dla1atW0d+9ee4dlF35+flbXiMlkUrdu3ewdmt2kp6dryJAhKl26tJydnVW2bFmNHDlShmHk6HHIeyyR91gi77FG3nN/5D3kPbaQ9/yBvMdaTuQ9FNEB4DFasmSJevfurWHDhmn//v2qUaOGQkJCdP78eXuHZjfXrl1TjRo19Omnn9o7lFwhNjZW3bp107fffqv169fr1q1batq0qa5du2bv0OymZMmSGjt2rPbt26e9e/fqueeeU8uWLfX999/bOzS727Nnj2bOnKnq1avbOxS7q1KlipKTk82v7du32zsku7p06ZKCg4OVN29erVmzRkeOHNGECRNUsGBBe4dmF3v27LG4PtavXy9JatOmjZ0js59x48Zp+vTpmjZtmo4ePapx48bpo48+0ieffJJjxyDvsUbeY4m8xxp5j23kPX8g77FE3mOJvMdaTuQ9JiOnpxoAAGwKCgpSYGCgpk2bJknKyMhQqVKl1KNHD/Xv39/O0dmfyWTSihUr1KpVK3uHkmv8+uuv8vLyUmxsrBo0aGDvcHKNQoUKafz48YqIiLB3KHaTmpqq2rVr67PPPtOHH36omjVravLkyfYOyy6GDx+ulStXKj4+3t6h5Br9+/dXXFyctm3bZu9QcqXIyEjFxMTo+PHjMplM9g7HLl588UUVLVpUc+bMMW97+eWX5ezsrIULF+bIMch77o+8xxp5T+bIe8h77kXeY4285/7Ie3Im72EmOgA8Jmlpadq3b5+aNGli3pYnTx41adJEO3futGNkyM2uXLki6c7NE+78DC86OlrXrl1TvXr17B2OXXXr1k0vvPCCxX9TnmTHjx9X8eLFVaZMGYWHhyspKcneIdnV119/rYCAALVp00ZeXl6qVauWZs+ebe+wcoW0tDQtXLhQnTt3fmJvJCWpfv362rhxo44dOyZJOnjwoLZv365mzZrlSP/kPXgY5D2WyHv+QN5jibzHEnmPbeQ9d+RE3uP4qIIDAFi6cOGC0tPTVbRoUYvtRYsW1Q8//GCnqJCbZWRkKDIyUsHBwapataq9w7GrQ4cOqV69erpx44ZcXV21YsUKVa5c2d5h2U10dLT279+vPXv22DuUXCEoKEhRUVHy9/dXcnKyRowYoWeffVaHDx+Wm5ubvcOzix9//FHTp09X7969NXDgQO3Zs0fvvvuunJyc1LFjR3uHZ1crV67U5cuX1alTJ3uHYlf9+/dXSkqKKlasKAcHB6Wnp2vUqFEKDw/Pkf7Je5Bd5D1/IO+xRN5jibzHGnmPbeQ9d+RE3kMRHQCAXKpbt246fPjwE7/GoST5+/srPj5eV65c0bJly9SxY0fFxsY+kTeUp0+fVs+ePbV+/Xrlz5/f3uHkCvfOIKlevbqCgoLk6+urpUuXPrE/fc/IyFBAQIBGjx4tSapVq5YOHz6sGTNmPPE3k3PmzFGzZs1UvHhxe4diV0uXLtWiRYu0ePFiValSRfHx8YqMjFTx4sWf+GsE9kHe8wfynj+Q91gj77FG3mMbec8dOZH3UEQHgMfkqaeekoODg86dO2ex/dy5cypWrJidokJu1b17d8XExGjr1q0qWbKkvcOxOycnJ5UrV06SVKdOHe3Zs0dTpkzRzJkz7RzZ47dv3z6dP39etWvXNm9LT0/X1q1bNW3aNN28eVMODg52jND+PD09VaFCBZ04ccLeodiNt7e3VbGlUqVKWr58uZ0iyh1OnTqlDRs26KuvvrJ3KHb3/vvvq3///mrXrp0kqVq1ajp16pTGjBmTIwUH8h5kB3mPJfKeP5D3PBh5D3mPLeQ9f8iJvIc10QHgMXFyclKdOnW0ceNG87aMjAxt3LjxiV/jEH8wDEPdu3fXihUrtGnTJpUuXdreIeVKGRkZunnzpr3DsIvGjRvr0KFDio+PN78CAgIUHh6u+Pj4J/5GUrrz8LHExER5e3vbOxS7CQ4OVkJCgsW2Y8eOydfX104R5Q7z5s2Tl5eXXnjhBXuHYnfXr19XnjyWt4MODg7KyMjIkf7Je5AV5D1ZQ95D3nM/5D3kPbaQ9/whJ/IeZqIDwGPUu3dvdezYUQEBAapbt64mT56sa9eu6Y033rB3aHaTmppqMWvip59+Unx8vAoVKiQfHx87RmYf3bp10+LFi7Vq1Sq5ubnpl19+kSR5eHjI2dnZztHZx4ABA9SsWTP5+Pjo6tWrWrx4sbZs2aK1a9faOzS7cHNzs1ortkCBAipcuPATu4Zsnz59FBoaKl9fX/38888aNmyYHBwcFBYWZu/Q7KZXr16qX7++Ro8erbZt22r37t2aNWuWZs2aZe/Q7CYjI0Pz5s1Tx44d5ejIbVBoaKhGjRolHx8fValSRQcOHNDEiRPVuXPnHDsGeY818h5L5D3WyHsskfdYI++xRt5jjbzHUo7kPQYA4LH65JNPDB8fH8PJycmoW7eu8e2339o7JLvavHmzIcnq1bFjR3uHZheZjYUkY968efYOzW46d+5s+Pr6Gk5OTkaRIkWMxo0bG+vWrbN3WLlKw4YNjZ49e9o7DLt59dVXDW9vb8PJyckoUaKE8eqrrxonTpywd1h299///teoWrWqkS9fPqNixYrGrFmz7B2SXa1du9aQZCQkJNg7lFwhJSXF6Nmzp+Hj42Pkz5/fKFOmjDFo0CDj5s2bOXoc8h5L5D2WyHuskfc8GHkPeU9myHsskfdYyom8x2QYhvHX6/kAAAAAAAAAAPzzsCY6AAAAAAAAAAA2UEQHAAAAAAAAAMAGiugAAAAAAAAAANhAER0AAAAAAAAAABsoogMAAAAAAAAAYANFdAAAAAAAAAAAbKCIDgAAAAAAAACADRTRAQAAAAAAAACwgSI6AAD42+jUqZNatWpl7zAeuSflPB+lRo0aKTIyMtv7DRkyRG+99VaW2vbv3189evTI9jEAAMiKJyUfeFLO81Ei7wEePYroAADgoT1swv6w+2WFYRiaNWuWgoKC5OrqKk9PTwUEBGjy5Mm6fv26JNs3a1u2bJHJZNLly5clSVFRUTKZTDKZTHJwcFDBggUVFBSkDz74QFeuXMn0+GPGjJGDg4PGjx//wFhPnjwpk8mk+Ph4i+1TpkxRVFRUdk4bOeCXX37RlClTNGjQoCy179Onj+bPn68ff/zxEUcGAMgNyHuskff8fZH3ANlDER0AAPyjtG/fXpGRkWrZsqU2b96s+Ph4DRkyRKtWrdK6deuy3Z+7u7uSk5N15swZ7dixQ2+99ZYWLFigmjVr6ueff7ZqP3fuXPXt21dz58596HPw8PCQp6fnQ++f29y6dStL7dLS0h5xJPf3+eefq379+vL19c1S+6eeekohISGaPn36I44MAIDMkffkPuQ9wD8TRXQAAPBQOnXqpNjYWE2ZMsU8a+nkyZOSpNjYWNWtW1f58uWTt7e3+vfvr9u3b993v/T0dEVERKh06dJydnaWv7+/pkyZkq2Yli5dqkWLFunLL7/UwIEDFRgYKD8/P7Vs2VKbNm3Sv/71r2yfp8lkUrFixeTt7a1KlSopIiJCO3bsUGpqqvr27WvRNjY2Vr///rs++OADpaSkaMeOHfftu3Tp0pKkWrVqyWQyqVGjRpKsZ4w1atRIPXr0UGRkpAoWLKiiRYtq9uzZunbtmt544w25ubmpXLlyWrNmjUX/hw8fVrNmzeTq6qqiRYuqffv2unDhgs14oqKi5OnpqZUrV6p8+fLKnz+/QkJCdPr0aYt2q1atUu3atZU/f36VKVNGI0aMMP99747Z9OnT1aJFCxUoUECjRo3K9Hh+fn4aOXKkOnToIHd3d/PPifv166cKFSrIxcVFZcqU0ZAhQyxuSIcPH66aNWvqiy++kJ+fnzw8PNSuXTtdvXrV5rmtXr1aHh4eWrRokc020dHRCg0Ntdi2bNkyVatWTc7OzipcuLCaNGmia9eumT8PDQ1VdHS0zT4BAP8M5D3kPeQ95D14slFEBwAAD2XKlCmqV6+e3nzzTSUnJys5OVmlSpXS2bNn1bx5cwUGBurgwYOaPn265syZow8//PC++2VkZKhkyZL6z3/+oyNHjmjo0KEaOHCgli5dmuWYFi1aJH9/f7Vs2dLqM5PJJA8Pjxw5dy8vL4WHh+vrr79Wenq6efucOXMUFhamvHnzKiwsTHPmzLlvP7t375YkbdiwQcnJyfrqq69stp0/f76eeuop7d69Wz169FCXLl3Upk0b1a9fX/v371fTpk3Vvn1780+3L1++rOeee061atXS3r179b///U/nzp1T27Zt7xvT9evXNWrUKC1YsEBxcXG6fPmy2rVrZ/5827Zt6tChg3r27KkjR45o5syZioqKsrphHD58uF566SUdOnRInTt3tnm8jz/+WDVq1NCBAwc0ZMgQSZKbm5uioqJ05MgRTZkyRbNnz9akSZMs9ktMTNTKlSsVExOjmJgYxcbGauzYsZkeY/HixQoLC9OiRYsUHh6eaZuLFy/qyJEjCggIMG9LTk5WWFiYOnfurKNHj2rLli1q3bq1DMMwt6lbt67OnDljLqQAAP6ZyHvIe8h7yHvwhDMAAAAeUsOGDY2ePXtabBs4cKDh7+9vZGRkmLd9+umnhqurq5Genm5zv8x069bNePnll83vO3bsaLRs2dJm+0qVKhktWrR4YL+2+tm8ebMhybh06ZJhGIYxb948w8PDI9M+pk+fbkgyzp07ZxiGYVy5csVwdnY24uPjDcMwjAMHDhiurq7G1atXbcbx008/GZKMAwcO3De+hg0bGs8884z5/e3bt40CBQoY7du3N29LTk42JBk7d+40DMMwRo4caTRt2tSi39OnTxuSjISEhEzjmTdvniHJ+Pbbb83bjh49akgydu3aZRiGYTRu3NgYPXq0xX5ffPGF4e3tbX4vyYiMjLR53nf5+voarVq1emC78ePHG3Xq1DG/HzZsmOHi4mKkpKSYt73//vtGUFCQ+f3da2zatGmGh4eHsWXLlvse48CBA4YkIykpybxt3759hiTj5MmTNve7cuWKIemB/QMA/v7Ie8h7DIO8h7wHTyrHx1mwBwAA/3xHjx5VvXr1ZDKZzNuCg4OVmpqqM2fOyMfHx+a+n376qebOnaukpCT9/vvvSktLU82aNbN8bOOemTKP2t1j3T3PL7/8UmXLllWNGjUkSTVr1pSvr6+WLFmiiIiIv3y86tWrm//t4OCgwoULq1q1auZtRYsWlSSdP39eknTw4EFt3rxZrq6uVn0lJiaqQoUKmR7H0dFRgYGB5vcVK1aUp6enjh49qrp16+rgwYOKi4uzmIGVnp6uGzdu6Pr163JxcZEki5lN95NZuyVLlmjq1KlKTExUamqqbt++LXd3d4s2fn5+cnNzM7/39vY2n/tdy5Yt0/nz5xUXF2dxTpn5/fffJUn58+c3b6tRo4YaN26satWqKSQkRE2bNtUrr7yiggULmts4OztLknkmHADgyULeQ94jkfcATwKWcwEAALlCdHS0+vTpo4iICK1bt07x8fF64403svXQpQoVKuiHH354YDt3d3dduXLFavvly5fl4OCgAgUKPLCPo0ePyt3dXYULF5Z05yfN33//vRwdHc2vI0eO/KUHbd0rb968Fu9NJpPFtrs3tRkZGZKk1NRUhYaGKj4+3uJ1/PhxNWjQ4KHjSE1N1YgRIyz6PHTokI4fP25xI5aVMcys3c6dOxUeHq7mzZsrJiZGBw4c0KBBg6yug8zG4+6531WrVi0VKVJEc+fOfWCh4amnnpIkXbp0ybzNwcFB69ev15o1a1S5cmV98skn8vf3108//WRuc/HiRUlSkSJFsnS+AABI5D0PQt5D3gPkNsxEBwAAD83JyclibUxJqlSpkpYvXy7DMMw3OHFxcXJzc1PJkiVt7hcXF6f69eura9eu5m2JiYnZiue1115Tu3bttGrVKqv1QQ3DUEpKijw8POTv76/o6GjdvHlT+fLlM7fZv3+/SpcubXWj8mfnz5/X4sWL1apVK+XJk0eHDh3S3r17tWXLFhUqVMjc7uLFi2rUqJF++OEHVaxY0aofJycnSbIai5xQu3ZtLV++XH5+fnJ0zHrKd/v2be3du1d169aVJCUkJOjy5cuqVKmSud+EhASVK1cux2OWpB07dsjX11eDBg0ybzt16tRD9VW2bFlNmDBBjRo1koODg6ZNm3bftu7u7jpy5IjFbDWTyaTg4GAFBwdr6NCh8vX11YoVK9S7d29Jdx5iljdvXlWpUuWhYgQA/H2Q95D35DTyHuDvg5noAADgofn5+WnXrl06efKkLly4oIyMDHXt2lWnT59Wjx499MMPP2jVqlUaNmyYevfurTx58tjcr3z58tq7d6/Wrl2rY8eOaciQIdqzZ0+24mnbtq1effVVhYWFafTo0dq7d69OnTqlmJgYNWnSRJs3b5YkhYeHy2QyqUOHDtq3b59OnDihuXPnavLkyXrvvfcs+jQMQ7/88ouSk5N19OhRzZ07V/Xr15eHh4f5gU5z5sxR3bp11aBBA1WtWtX8atCggQIDA20+aMvLy0vOzs7mh19lNkvsYXXr1k0XL15UWFiY9uzZo8TERK1du1ZvvPHGfW9e8+bNqx49emjXrl3at2+fOnXqpKefftp8czl06FAtWLBAI0aM0Pfff6+jR48qOjpagwcPzpG4y5cvr6SkJEVHRysxMVFTp07VihUrHrq/ChUqaPPmzVq+fLkiIyNttsuTJ4+aNGmi7du3m7ft2rXLfB0lJSXpq6++0q+//mq+sZbuPHDs2WefNf+8GQDwz0XeQ95D3kPegycXRXQAAPDQ+vTpIwcHB1WuXFlFihRRUlKSSpQooW+++Ua7d+9WjRo19M477ygiIsLiZiOz/d5++221bt1ar776qoKCgvTbb79ZzM7KCpPJpMWLF2vixIlauXKlGjZsqOrVq2v48OFq2bKlQkJCJEmenp7atm2bbt26pRYtWqhmzZqaOnWqJk6cqLffftuiz5SUFHl7e6tEiRKqV6+eZs6cqY4dO+rAgQPy9vZWWlqaFi5cqJdffjnTmF5++WUtWLBAt27dsvrM0dFRU6dO1cyZM1W8eHGrWWR/RfHixRUXF6f09HQ1bdpU1apVU2RkpDw9Pc039ZlxcXFRv3799Nprryk4OFiurq5asmSJ+fOQkBDFxMRo3bp1CgwM1NNPP61JkybJ19c3R+Ju0aKFevXqpe7du6tmzZrasWOHhgwZ8pf69Pf316ZNm/Tll19aFQvu9e9//1vR0dHmn0e7u7tr69atat68uSpUqKDBgwdrwoQJatasmXmf6Ohovfnmm38pPgDA3wN5D3kPeQ95D55cJuNxPokCAAAAuVZUVJQiIyN1+fJle4diF4ZhKCgoSL169VJYWNgD269Zs0bvvfeevvvuu2z9dBwAANgfeQ95D5AdzEQHAAAAdGdG36xZs3T79u0stb927ZrmzZvHjSQAAPjbIe8BsocrHwAAAPj/atasqZo1a2ap7SuvvPJogwEAAHiEyHuArGM5FwAAAAAAAAAAbGA5FwAAAAAAAAAAbKCIDgAAAAAAAACADRTRAQAAAAAAAACwgSI6AAAAAAAAAAA2UEQHAAAAAAAAAMAGiugAAAAAAAAAANhAER0AAAAAAAAAABsoogMAAAAAAAAAYMP/A4obCR76FbmZAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
callsper-call (us)total (s)
kernelarm
gluon one_shot all-reduceexp16486440.96.74
custom all-reduce 2stagebaseline16470319.83.26
quickreduce all-reducebaseline9664702.54.54
exp8055651.54.55
\n", + "
" + ], + "text/plain": [ + " calls per-call (us) total (s)\n", + "kernel arm \n", + "gluon one_shot all-reduce exp 164864 40.9 6.74\n", + "custom all-reduce 2stage baseline 164703 19.8 3.26\n", + "quickreduce all-reduce baseline 966 4702.5 4.54\n", + " exp 805 5651.5 4.55" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "gluon vs custom all-reduce: 40.9 vs 19.8 us/call at ~equal calls (164864 vs 164703) -> 2.1x total\n" + ] + } + ], + "source": [ + "# Cross-check from the PyTorch profiler summary tables (parse_profile), not the traces:\n", + "# each entry's total CUDA time = calls x per-call mean (the \"total us\" row). Same two-panel\n", + "# median/min-max view as above. We drop the cudagraph region markers (execute_context_*):\n", + "# they're host spans that CONTAIN the leaf kernels, so they double-count. (A few host\n", + "# runtime calls like hipPointerGetAttribute remain; this table isn't purely GPU kernels.)\n", + "import matplotlib.pyplot as plt, numpy as np\n", + "\n", + "LIMIT = 40\n", + "def clip(name):\n", + " return name if len(name) <= LIMIT else name[:LIMIT] + \"...\"\n", + "\n", + "pr = df[(df[\"preprocessor\"] == \"parse_profile\") & (df[\"statistic\"].isna()) & (df[\"unit\"] == \"us\")]\n", + "pr = pr[~pr[\"name\"].str.contains(\"execute_context\")] # drop cudagraph region markers\n", + "perp = (pr.groupby([\"container\", \"rank\", \"name\"])[\"num\"].sum() / 1e6).reset_index()\n", + "\n", + "TOPN = 12\n", + "top_p = perp.groupby(\"name\")[\"num\"].sum().sort_values(ascending=False).head(TOPN).index.tolist()\n", + "\n", + "def statp(name, arm):\n", + " v = perp[(perp[\"name\"] == name) & (perp[\"container\"] == arm)][\"num\"]\n", + " return (v.median(), v.min(), v.max()) if len(v) else (0.0, 0.0, 0.0)\n", + "\n", + "arms = [\"baseline\", \"exp\"]\n", + "colors = {\"baseline\": \"#2c7fb8\", \"exp\": \"#d95f0e\"}\n", + "yy = np.arange(len(top_p))\n", + "fig, axes = plt.subplots(1, 2, figsize=(15, 0.55 * len(top_p) + 1.5), sharex=True, sharey=True)\n", + "for ax, arm in zip(axes, arms):\n", + " med, lo, hi = [], [], []\n", + " for nm in top_p:\n", + " m, mn, mx = statp(nm, arm)\n", + " med.append(m); lo.append(m - mn); hi.append(mx - m)\n", + " ax.barh(yy, med, color=colors[arm], xerr=[lo, hi],\n", + " error_kw=dict(ecolor=\"black\", lw=0.8, capsize=2))\n", + " ax.set_title(arm)\n", + " ax.set_xlabel(\"total CUDA time per rank (s)\")\n", + "axes[0].set_yticks(yy)\n", + "axes[0].set_yticklabels([clip(n) for n in top_p])\n", + "axes[0].invert_yaxis()\n", + "fig.suptitle(\"Profiler-table top kernels, regions dropped (median rank, min-max bars): baseline vs exp\")\n", + "plt.tight_layout()\n", + "plt.show()\n", + "\n", + "# All-reduce kernels: calls vs per-call vs total (same profiler table). Calls are identical\n", + "# across the 8 ranks, so the median IS the per-rank value; per-call/total vary ~1%. The\n", + "# gluon and custom all-reduce run the SAME number of calls, so the per-call gap IS the\n", + "# total gap - the kernel-level form of the correction: gluon is slower PER CALL.\n", + "def kstat(sub):\n", + " calls = sub[sub[\"unit\"] == \"calls\"].groupby(\"rank\")[\"num\"].first().median()\n", + " per_call = sub[(sub[\"statistic\"] == \"mean\") & (sub[\"unit\"] == \"us\")].groupby(\"rank\")[\"num\"].first().median()\n", + " total = sub[sub[\"statistic\"].isna() & (sub[\"unit\"] == \"us\")].groupby(\"rank\")[\"num\"].first().median()\n", + " return calls, per_call, total\n", + "\n", + "SPECS = [\n", + " (\"gluon one_shot all-reduce\", \"one_shot_all_reduce_gluon\", \"exp\"),\n", + " (\"custom all-reduce 2stage\", \"cross_device_reduce_2stage\", \"baseline\"),\n", + " (\"quickreduce all-reduce\", \"quickreduce::allreduce_prototype\", \"baseline\"),\n", + " (\"quickreduce all-reduce\", \"quickreduce::allreduce_prototype\", \"exp\"),\n", + "]\n", + "recs = []\n", + "for label, name, cont in SPECS:\n", + " sub = df[(df[\"preprocessor\"] == \"parse_profile\") & (df[\"name\"].str.contains(name, regex=False)) & (df[\"container\"] == cont)]\n", + " if not len(sub):\n", + " continue\n", + " calls, per_call, total = kstat(sub)\n", + " recs.append({\"kernel\": label, \"arm\": cont, \"calls\": int(calls),\n", + " \"per-call (us)\": round(per_call, 1), \"total (s)\": round(total / 1e6, 2)})\n", + "tbl = pd.DataFrame(recs).set_index([\"kernel\", \"arm\"])\n", + "display(tbl)\n", + "\n", + "g = tbl.loc[(\"gluon one_shot all-reduce\", \"exp\")]\n", + "c = tbl.loc[(\"custom all-reduce 2stage\", \"baseline\")]\n", + "print(f\"gluon vs custom all-reduce: {g['per-call (us)']} vs {c['per-call (us)']} us/call \"\n", + " f\"at ~equal calls ({int(g['calls'])} vs {int(c['calls'])}) -> {g['total (s)'] / c['total (s)']:.1f}x total\")\n" + ] + }, + { + "cell_type": "markdown", + "id": "8facd313", + "metadata": {}, + "source": [ + "## Summary\n", + "\n", + "1. **e2e (fig 1):** exp regresses across the board. Output throughput -16.6%, TPOT +25.5%, TTFT +5.3%, duration +19.9%. TPOT is hit hardest because the all-reduce is on the decode path (every output token), while prefill/TTFT is mostly compute.\n", + "2. **kernels (figs 2 & 3):** the cause is the all-reduce. Exp's `one_shot_all_reduce_gluon` (6.7 s) replaces baseline's `cross_device_reduce_2stage` (3.25 s), roughly 2x slower, with compute unchanged. The trace (fig 2) and profiler table (fig 3) agree. Bars are the median rank and whiskers span min to max; spread is ~1%, so no rank skew.\n", + "3. **per-call (fig 3 table):** the two all-reduce kernels run the same number of calls (~165k, identical across all 8 ranks), so this is a per-call regression: gluon 40.9 us/call vs custom 19.8 us/call, roughly 2x. The earlier \"gluon is faster\" claim was a per-call microbench number that does not hold in the full workload.\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/benchmark/llama70b/test.sh b/benchmark/llama70b/test.sh new file mode 100755 index 000000000..5d04c2c50 --- /dev/null +++ b/benchmark/llama70b/test.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# Reproduce the iris collective correctness bug: the gluon one-shot all_gather +# returns wrong results under cudagraph replay with varying inputs, while a +# torch.distributed control passes the same case. Runs against the baked exp +# stack (Dockerfile.exp). 8 GPUs, no model or server. +# +# Subset the matrix with COMMS_ARGS, e.g. COMMS_ARGS="-d bf16 -s 256,8192". +set -euo pipefail + +cd /src/aiter +python3 op_tests/comms_tests/test_aiter_communicator.py ${COMMS_ARGS:-}